Beispiel
hono 4.13.2: jwt
Verifiziertes Beispiel für npm hono 4.13.2: jwt. Der Vertrag lief auf node 22 · linux debian/x64 · docker und bestand: sign generates a signed JWT string…
sha256:4152daf35516ba7e6e50ccc74055c0e45e6699de815c1ec6eea09495776532d7
Dieses Netzwerk bietet eine Sache: ein Sample, das baut. Es hat es in einer Sandbox ausgeführt und die signierte Quittung behalten. Es bewertet nichts und garantiert nichts — ob derselbe Code bei Ihnen baut, hat es nicht gemessen.
Wie viele verschiedene Signaturschlüssel eine bestandene Vertragsquittung eingereicht haben. Einer ist der Autor allein; mehr als einer heißt, jemand anderes hat es auch gebaut. Ein Schlüssel wird selbst erzeugt und hat keine registrierte Identität dahinter — gezählt werden Schlüssel, nicht Personen.
MIT-0
Ausführungsbelege
Die deklarierte Umgebung und die signierten Läufe stehen getrennt, damit Sie genau sehen, was dieses Sample ausgeführt hat und wo.
- Beleggrundlage
- Signierter Vertrag bestanden
- Verifizierungsbelege
- 1
- Signaturschlüssel, die es gebaut haben
- 1
Deklarierte Umgebung
node 22.23 linux 24 · ubuntu · glibc 2.39 x64 node 22.23 javascript npm 10
Umgebungen der Verifizierungsläufe
| Umgebung | Contract | Stufen | Lauf |
|---|---|---|---|
| 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-01 |
Fall
HOW- Ziel
- verify jwt in pkg:npm/hono@4.13.2
- Pakete
- Symbole
-
- jwt
- Umgebung
- node 22.23.2
- Erstellt
- 2026-09-01T22:36:52Z
Contract
- sign generates a signed JWT string with three base64url-encoded segments for a given payload and secret
- decode parses token header and payload without verifying signature
- verify validates token signature and returns the payload, rejecting invalid secrets or tampered tokens
- jwt middleware authenticates requests with valid Bearer token and injects jwtPayload into context
- jwt middleware rejects requests with missing or invalid Bearer tokens with 401 Unauthorized
Dateien
- PROMPT.md
- csx.json
- package-lock.json
- package.json
- spec.json
- src/index.mjs
- test/contract.mjs
Quelltext
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 jwt in pkg:npm/hono@4.13.2
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/hono@4.13.2
Demonstrate these symbols/APIs:
- jwt
Constraints:
- executionContext: node
Required runtime conditions:
- ecosystem: npm
- language: javascript
- moduleSystem: cjs
- packageManager: npm@10.9.8
- runtime: node@22.23.2
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:f5a5625edcc557bac1ff88b671ee7a90add5aa9222fef98af801a86f3709ddaa","constraints":{"executionContext":"node"},"contract":["sign generates a signed JWT string with three base64url-encoded segments for a given payload and secret","decode parses token header and payload without verifying signature","verify validates token signature and returns the payload, rejecting invalid secrets or tampered tokens","jwt middleware authenticates requests with valid Bearer token and injects jwtPayload into context","jwt middleware rejects requests with missing or invalid Bearer tokens with 401 Unauthorized"],"goal":"verify jwt in pkg:npm/hono@4.13.2","kind":"HOW","packages":["pkg:npm/hono@4.13.2"],"schemaVersion":1,"symbols":["jwt"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","executionContext":"node","language":"javascript","libc":"glibc","libcVersion":"2.39","moduleSystem":"cjs","os":"linux","osVersionBucket":"24","packageManager":"npm","packageManagerVersion":"10.9.8","runtime":"node","runtimeVersion":"22.23.2","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/hono@4.13.2"],"schemaVersion":1,"subject":"pkg:npm/hono@4.13.2","symbols":["jwt"],"verifierAdapter":"node-typescript@1"}
{
"name": "sample-hono-jwt",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "sample-hono-jwt",
"version": "1.0.0",
"dependencies": {
"hono": "4.13.2"
}
},
"node_modules/hono": {
"version": "4.13.2",
"resolved": "https://registry.npmjs.org/hono/-/hono-4.13.2.tgz",
"integrity": "sha512-JydRilDRkYBQMt9qR9U92mXxmbGqsqSn/IKOrh4e7/gEbn+0zSr8igTu0obwJoNGN4sez28DIql7FBHWydoJpA==",
"license": "MIT",
"engines": {
"node": ">=16.9.0"
}
}
}
}
{
"name": "sample-hono-jwt",
"version": "1.0.0",
"private": true,
"description": "Clean-room verification for jwt in pkg:npm/hono@4.13.2",
"dependencies": {
"hono": "4.13.2"
}
}
{
"schemaVersion": 1,
"goal": "verify jwt in pkg:npm/hono@4.13.2",
"kind": "HOW",
"packages": [
"pkg:npm/hono@4.13.2"
],
"symbols": [
"jwt"
],
"constraints": {
"executionContext": "node"
},
"runtimeConditions": {
"ecosystem": "npm",
"language": "javascript",
"moduleSystem": "cjs",
"packageManager": "npm@10.9.8",
"runtime": "node@22.23.2"
}
}
import { Hono } from 'hono';
import { jwt, sign, verify, decode } from 'hono/jwt';
/**
* Signs a JWT payload with the provided secret and algorithm.
*
* @param {object} payload - Claims object to include in JWT payload.
* @param {string} secret - Secret key for HMAC signing.
* @param {string} [alg='HS256'] - Algorithm to use for signing.
* @returns {Promise<string>} Signed JWT string.
*/
export async function createToken(payload, secret, alg = 'HS256') {
return await sign(payload, secret, alg);
}
/**
* Decodes a JWT token without verifying its signature.
*
* @param {string} token - The raw JWT token string.
* @returns {{ header: object, payload: object }} Decoded header and payload.
*/
export function decodeToken(token) {
return decode(token);
}
/**
* Verifies a JWT token signature and returns the verified payload.
*
* @param {string} token - The raw JWT token string.
* @param {string} secret - Secret key to verify token against.
* @param {string} [alg='HS256'] - Algorithm expected.
* @returns {Promise<object>} Verified payload.
*/
export async function verifyToken(token, secret, alg = 'HS256') {
return await verify(token, secret, alg);
}
/**
* Creates a Hono application configured with JWT middleware protecting specific routes.
*
* @param {string} secret - Secret key used by JWT middleware.
* @param {string} [alg='HS256'] - Algorithm expected.
* @returns {Hono} Configured Hono app.
*/
export function createProtectedApp(secret, alg = 'HS256') {
const app = new Hono();
// Public endpoint
app.get('/public', (c) => c.json({ status: 'ok', public: true }));
// Protected routes guarded by jwt middleware
app.use('/api/*', jwt({ secret, alg }));
// Protected endpoint accessing jwtPayload injected into context
app.get('/api/profile', (c) => {
const payload = c.get('jwtPayload');
return c.json({
success: true,
user: payload
});
});
return app;
}
export { jwt, sign, verify, decode };
import assert from 'node:assert/strict';
import {
createToken,
decodeToken,
verifyToken,
createProtectedApp,
jwt,
sign,
verify,
decode
} from '../src/index.mjs';
const SECRET = 'sample-verification-secret-key-32bytes!';
// Contract 1: sign generates a signed JWT string with three base64url-encoded segments for a given payload and secret
{
assert.equal(typeof sign, 'function', 'sign must be a function');
assert.equal(typeof createToken, 'function');
const payload = { sub: 'usr_1001', role: 'admin', iat: Math.floor(Date.now() / 1000) };
const token = await createToken(payload, SECRET, 'HS256');
assert.equal(typeof token, 'string', 'Token must be a string');
const parts = token.split('.');
assert.equal(parts.length, 3, 'JWT must have header, payload, and signature parts');
}
// Contract 2: decode parses token header and payload without verifying signature
{
assert.equal(typeof decode, 'function', 'decode must be a function');
assert.equal(typeof decodeToken, 'function');
const payload = { sub: 'usr_1002', name: 'Alice', aud: 'api' };
const token = await createToken(payload, SECRET, 'HS256');
const decoded = decodeToken(token);
assert.equal(typeof decoded, 'object', 'decode must return an object');
assert.equal(decoded.header.alg, 'HS256', 'Header algorithm must match');
assert.equal(decoded.header.typ, 'JWT', 'Header type must be JWT');
assert.equal(decoded.payload.sub, 'usr_1002');
assert.equal(decoded.payload.name, 'Alice');
assert.equal(decoded.payload.aud, 'api');
}
// Contract 3: verify validates token signature and returns the payload, rejecting invalid secrets or tampered tokens
{
assert.equal(typeof verify, 'function', 'verify must be a function');
assert.equal(typeof verifyToken, 'function');
const payload = { sub: 'usr_1003', role: 'editor' };
const token = await createToken(payload, SECRET, 'HS256');
// Valid verification
const verified = await verifyToken(token, SECRET, 'HS256');
assert.equal(verified.sub, 'usr_1003');
assert.equal(verified.role, 'editor');
// Invalid secret rejection
await assert.rejects(
async () => {
await verifyToken(token, 'different-wrong-secret-key-32bytes!', 'HS256');
},
'verify must reject invalid secret'
);
// Tampered payload rejection
const parts = token.split('.');
const tamperedToken = `${parts[0]}.eyJzdWIiOiJ1c3JfOTk5OSJ9.${parts[2]}`;
await assert.rejects(
async () => {
await verifyToken(tamperedToken, SECRET, 'HS256');
},
'verify must reject tampered token'
);
}
// Contract 4: jwt middleware authenticates requests with valid Bearer token and injects jwtPayload into context
{
assert.equal(typeof jwt, 'function', 'jwt must be a function');
const app = createProtectedApp(SECRET);
// Public route should be accessible without token
const pubRes = await app.request('http://localhost/public');
assert.equal(pubRes.status, 200);
const pubData = await pubRes.json();
assert.equal(pubData.status, 'ok');
// Valid token accessing protected route
const token = await createToken({ sub: 'usr_1004', role: 'member' }, SECRET, 'HS256');
const protRes = await app.request('http://localhost/api/profile', {
headers: {
Authorization: `Bearer ${token}`
}
});
assert.equal(protRes.status, 200, 'Protected route should return 200 with valid Bearer token');
const protData = await protRes.json();
assert.equal(protData.success, true);
assert.equal(protData.user.sub, 'usr_1004');
assert.equal(protData.user.role, 'member');
}
// Contract 5: jwt middleware rejects requests with missing or invalid Bearer tokens with 401 Unauthorized
{
const app = createProtectedApp(SECRET);
// Missing Authorization header
const missingRes = await app.request('http://localhost/api/profile');
assert.equal(missingRes.status, 401, 'Missing Authorization header should return 401');
// Invalid / corrupted token
const invalidRes = await app.request('http://localhost/api/profile', {
headers: {
Authorization: 'Bearer invalid.token.payload'
}
});
assert.equal(invalidRes.status, 401, 'Invalid Bearer token should return 401');
// Token signed with wrong secret
const wrongToken = await createToken({ sub: 'usr_fake' }, 'wrong-secret-key-32bytes!', 'HS256');
const wrongRes = await app.request('http://localhost/api/profile', {
headers: {
Authorization: `Bearer ${wrongToken}`
}
});
assert.equal(wrongRes.status, 401, 'Bearer token with wrong secret should return 401');
}
console.log('All contracts for jwt in pkg:npm/hono@4.13.2 passed.');
Ursprungs-Seeder
anonym