
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@fluojs/jwt
Advanced tools
English 한국어
HTTP-agnostic JWT token core that handles signing access tokens and verifying them into a normalized JwtPrincipal.
npm install @fluojs/jwt
JwtPrincipal shape (subject, roles, scopes) regardless of the underlying token claim variants.Configure the JWT module with your signing keys and policy.
Import JWT support through JwtModule.forRoot(...) or JwtModule.forRootAsync(...).
import { Module } from '@fluojs/core';
import { JwtModule } from '@fluojs/jwt';
@Module({
imports: [
JwtModule.forRoot({
algorithms: ['HS256'],
secret: 'your-secure-secret',
issuer: 'my-api',
audience: 'my-app',
accessTokenTtlSeconds: 3600,
}),
],
})
export class AuthModule {}
Use JwtModule.forRootAsync(...) when your JWT settings must come from another provider and still need to resolve into the standard module contract.
Async registration exports the same JWT provider surface as the synchronous path, including RefreshTokenService; resolving that service still requires refreshToken options to be configured.
import { Module, type Token } from '@fluojs/core';
import { JwtModule } from '@fluojs/jwt';
const JWT_SETTINGS = Symbol('jwt-settings');
@Module({
imports: [
JwtModule.forRootAsync({
inject: [JWT_SETTINGS],
useFactory: async (settings) => ({
accessTokenTtlSeconds: 900,
algorithms: ['HS256'],
audience: 'my-app',
issuer: settings.issuer,
secret: settings.secret,
}),
}),
],
providers: [
{
provide: JWT_SETTINGS as Token<{ issuer: string; secret: string }>,
useValue: {
issuer: 'my-api',
secret: 'your-secure-secret',
},
},
],
})
export class AuthModule {}
Inject DefaultJwtSigner to issue tokens and DefaultJwtVerifier to validate them.
import { DefaultJwtSigner, DefaultJwtVerifier } from '@fluojs/jwt';
// Sign
const token = await signer.signAccessToken({
sub: 'user-123',
roles: ['admin'],
scopes: ['read:profile'],
});
// Verify
const principal = await verifier.verifyAccessToken(token);
// principal: { subject: 'user-123', roles: ['admin'], scopes: ['read:profile'], ... }
When you use JwtService.sign(payload, { expiresIn }), the per-call expiresIn override always wins over any pre-existing payload.exp value so token lifetime stays deterministic at the call site. expiresIn accepts a non-negative number of seconds or short duration strings such as 60s, 15m, 1h, or 7d. Numeric seconds preserve fractional JWT NumericDate precision; string durations remain whole-second literals.
Use public/private key pairs for enhanced security across distributed systems.
const signer = new DefaultJwtSigner({
algorithms: ['RS256'],
privateKey: '...PEM...',
});
const verifier = new DefaultJwtVerifier({
algorithms: ['RS256'],
publicKey: '...PEM...',
});
@fluojs/jwt automatically unifies scope (string) and scopes (array) claims into a single scopes: string[] property in the JwtPrincipal, ensuring consistent behavior for authorization guards.
When verification keys come from a remote JWKS endpoint, keep the fetch path bounded so auth traffic cannot hang on a slow or stalled identity provider.
const verifier = new DefaultJwtVerifier({
algorithms: ['RS256'],
jwksRequestTimeoutMs: 5_000,
jwksUri: 'https://issuer.example.com/.well-known/jwks.json',
});
jwksRequestTimeoutMs defaults to 5_000 and aborts the outbound JWKS fetch once that budget is exceeded.
JwtService.verify(token, options) applies per-call algorithm and claim-policy overrides (issuer, audience, clockSkewSeconds, maxAge, requireExp) without rebuilding the underlying JWKS client or static key-resolution cache. Per-call verification does not replace configured key sources such as jwksUri, keys[], publicKey, secret, or secretOrKeyProvider.
When multiple compatible keys are configured, kid disambiguates the verification key. A single compatible static key can verify tokens without kid; JWKS-backed verification relies on the remote key set and its cache policy.
RefreshTokenService uses a dedicated HMAC refresh-token path. Configure refreshToken.secret separately from access-token signing keys. Rotation can use RefreshTokenStore.rotate(...) to atomically mark the current token as consumed and persist the replacement token in the same durable store operation, so a successful rotation never consumes the old token without a stored successor. Stores that only implement the older atomic consume(...) hook remain supported, but durable replacement persistence depends on the store-owned rotate(...) operation.
JWT signing and verification require at least one supported algorithm in algorithms. The built-in signer supports HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384, and ES512; configuration with an empty algorithm list fails fast instead of issuing or accepting ambiguous tokens.
Access-token TTL must also be a positive finite number. When accessTokenTtlSeconds is omitted, DefaultJwtSigner uses the documented 3600 second default. Fractional seconds are preserved in the JWT NumericDate exp claim; when the option is provided as 0, a negative number, or a non-finite value, signing fails with JwtConfigurationError before a token is issued.
Verification fails closed on malformed time policy. exp, nbf, and iat claims that participate in verification must be finite JWT NumericDate numbers, and clockSkewSeconds must be a non-negative finite number. Non-finite values are rejected instead of extending expiration, not-before, or age checks.
JwtModule: The main entry point for DI registration.DefaultJwtSigner: Handles token issuance with default claim filling.DefaultJwtVerifier: Handles token validation and normalization.JwtService: A convenience facade combining signing and verification.JwksClient: Fetches and caches remote JWKS keys with bounded request timeouts.RefreshTokenService: Issues, rotates, and revokes refresh tokens when refreshToken options are configured.JwtPrincipal: The normalized identity object (subject, roles, scopes, claims).JwtVerifierOptions: Configuration for algorithms, keys, and validation policy.SignOptions and VerifyOptions: Per-call signing and verification overrides.JwtClaims, JwtSigner, JwtVerifier, JwtKeyEntry, JwtAlgorithm: Public signing and verification contracts.JwtVerificationError, JwtInvalidTokenError, JwtExpiredTokenError, JwtConfigurationError: Typed JWT failures.createJwtPlatformStatusSnapshot(...) and createJwtPlatformDiagnosticIssues(...): Status and diagnostic helpers.JWT_OPTIONS, HMAC_HASH, ASYMMETRIC_HASH: Exported tokens/constants used by the module and verification layer.@fluojs/passport: The auth execution layer that uses this core for guards and strategies.@fluojs/config: Recommended for managing secrets and JWT options across environments.packages/jwt/src/module.test.ts: Module registration and DI patterns.packages/jwt/src/signing/signer.test.ts: Token signing examples.examples/auth-jwt-passport/src/auth/auth.service.ts: Real-world token issuance.FAQs
HTTP-agnostic JWT signing and verification core for Fluo authentication.
The npm package @fluojs/jwt receives a total of 52 weekly downloads. As such, @fluojs/jwt popularity was classified as not popular.
We found that @fluojs/jwt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.