샘플
ip-address 10.7.0: Address6.fromURL
검증된 샘플 — npm ip-address 10.7.0: Address6.fromURL. node 22 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: Address6.fromURL parses bracketed IPv6 address…
sha256:1d9dbf186f858790b377ef45f027db51709d2b5e8038ac26cedcec6b51e28c28
이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다.
통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다.
MIT-0
실행 증거
선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.
- 증거 기준
- 서명된 컨트랙트 통과
- 검증 영수증
- 1
- 빌드한 서명 키
- 1
선언된 환경
linux 24 · ubuntu · glibc 2.39 x64 npm
검증 실행 환경
| 환경 | 컨트랙트 | 단계 | 실행일 |
|---|---|---|---|
| node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2… |
2026-09-07 |
케이스
HOW- 목표
- verify Address6.fromURL in pkg:npm/ip-address@10.7.0
- 심벌
-
- Address6.fromURL
- 생성일
- 2026-09-07T01:15:26Z
컨트랙트
- Address6.fromURL parses bracketed IPv6 address and port from HTTP URL
- Address6.fromURL parses bracketed IPv6 address without port and sets port to null
- Address6.fromURL parses bracketed IPv6 address from URL with protocol and no port
- Address6.fromURL parses host without protocol scheme as bracketed address and port
- Address6.fromURL squelches out-of-range port numbers to null
- Address6.fromURL returns error and null address and port for invalid non-IPv6 URLs
- Address6.fromURL returns error and null address and port for malformed bracketed host with port
파일
- PROMPT.md
- csx.json
- package-lock.json
- package.json
- spec.json
- test/contract.cjs
소스
Clean-room public code sample — generation instructions
Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.
A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.
Goal: verify Address6.fromURL in pkg:npm/ip-address@10.7.0
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/ip-address@10.7.0
Demonstrate these symbols/APIs:
- Address6.fromURL
Rules:
- One focused purpose; the smallest project that proves the goal.
- Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
- Pin every dependency with a lockfile so resolution is reproducible.
- No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
- No personal names, emails, company names, or project identifiers of any kind.
- No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
- Keep it under 200 files and 256KB packed.
{"case":{"caseId":"case:sha256:6f61a62c466e65c2694d26525b80103e281eb0b57b36899327c4043a2afd2914","contract":["Address6.fromURL parses bracketed IPv6 address and port from HTTP URL","Address6.fromURL parses bracketed IPv6 address without port and sets port to null","Address6.fromURL parses bracketed IPv6 address from URL with protocol and no port","Address6.fromURL parses host without protocol scheme as bracketed address and port","Address6.fromURL squelches out-of-range port numbers to null","Address6.fromURL returns error and null address and port for invalid non-IPv6 URLs","Address6.fromURL returns error and null address and port for malformed bracketed host with port"],"goal":"verify Address6.fromURL in pkg:npm/ip-address@10.7.0","kind":"HOW","packages":["pkg:npm/ip-address@10.7.0"],"schemaVersion":1,"symbols":["Address6.fromURL"]},"contractCommand":["node","test/contract.cjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/ip-address@10.7.0"],"schemaVersion":1,"subject":"pkg:npm/ip-address@10.7.0","symbols":["Address6.fromURL"],"verifierAdapter":"node-typescript@1"}
{
"name": "ip-address-fromurl-sample",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ip-address-fromurl-sample",
"version": "1.0.0",
"dependencies": {
"ip-address": "10.7.0"
}
},
"node_modules/ip-address": {
"version": "10.7.0",
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.7.0.tgz",
"integrity": "sha512-BGFsyJd5mpXp3rK6jIdADLNgpJUK1jnjzvYF8lK+VyDab9JAmqN0YOKDdP17HlgKb2+ehPgDc8EtnRLbGCAMhA==",
"license": "MIT",
"engines": {
"node": ">= 12"
}
}
}
}
{
"name": "ip-address-fromurl-sample",
"version": "1.0.0",
"private": true,
"description": "Verification sample for Address6.fromURL in ip-address@10.7.0",
"dependencies": {
"ip-address": "10.7.0"
}
}
{
"schemaVersion": 1,
"goal": "verify Address6.fromURL in pkg:npm/ip-address@10.7.0",
"kind": "HOW",
"packages": [
"pkg:npm/ip-address@10.7.0"
],
"symbols": [
"Address6.fromURL"
]
}
const assert = require('node:assert/strict');
const { Address6 } = require('ip-address');
// 1. Address6.fromURL parses bracketed IPv6 address and port from HTTP URL
const res1 = Address6.fromURL('http://[2001:db8::1]:8080/path?query=1#hash');
assert.equal(res1.error, undefined);
assert.equal(res1.port, 8080);
assert.equal(res1.address instanceof Address6, true);
assert.equal(res1.address.correctForm(), '2001:db8::1');
// 2. Address6.fromURL parses bracketed IPv6 address without port and sets port to null
const res2 = Address6.fromURL('https://[::1]/');
assert.equal(res2.error, undefined);
assert.equal(res2.port, null);
assert.equal(res2.address instanceof Address6, true);
assert.equal(res2.address.correctForm(), '::1');
// 3. Address6.fromURL parses bracketed IPv6 address from URL with protocol and no port
const res3 = Address6.fromURL('http://[2001:db8::1]/');
assert.equal(res3.error, undefined);
assert.equal(res3.port, null);
assert.equal(res3.address instanceof Address6, true);
assert.equal(res3.address.correctForm(), '2001:db8::1');
// 4. Address6.fromURL parses host without protocol scheme as bracketed address and port
const res4 = Address6.fromURL('[fe80::1]:443');
assert.equal(res4.error, undefined);
assert.equal(res4.port, 443);
assert.equal(res4.address instanceof Address6, true);
assert.equal(res4.address.correctForm(), 'fe80::1');
// 5. Address6.fromURL squelches out-of-range port numbers to null
const res5 = Address6.fromURL('http://[::1]:70000/');
assert.equal(res5.error, undefined);
assert.equal(res5.port, null);
assert.equal(res5.address instanceof Address6, true);
assert.equal(res5.address.correctForm(), '::1');
// 6. Address6.fromURL returns error and null address and port for invalid non-IPv6 URLs
const res6 = Address6.fromURL('http://example.com/foo');
assert.equal(res6.error, 'failed to parse address from URL');
assert.equal(res6.address, null);
assert.equal(res6.port, null);
// 7. Address6.fromURL returns error and null address and port for malformed bracketed host with port
const res7 = Address6.fromURL('http://[invalid:ipv6]:8080/');
assert.equal(res7.error, 'failed to parse address with port');
assert.equal(res7.address, null);
assert.equal(res7.port, null);
console.log('Contract verified successfully.');
오리진 시더
익명