Chapter 8: Authentication#
1. Locking the Door#
Every endpoint you have built so far is public. Anyone with the URL can read, create, update, and delete data. Fine for a tutorial. Unacceptable in production.
A real application needs identity. Who is making this request? And are they allowed to make it?
This chapter covers Tina4's authentication system: JWT tokens, password hashing, middleware-based route protection, CSRF tokens for forms, and session management.
2. JWT Tokens#
Tina4 uses JSON Web Tokens (JWT) for authentication. A JWT is a signed string carrying a payload -- a user ID, a role, whatever you need. The server creates the token at login. The client sends it with every request. The server verifies it without touching the database.
Generating a Token#
import { Auth } from "tina4-nodejs";โconst payload = { user_id: 42, email: "alice@example.com", role: "admin"};โconst token = Auth.getToken(payload, secret);getToken() signs the payload with HS256 (HMAC-SHA256) and returns a JWT string like:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjo0MiwiZW1haWwiOiJhbGljZUBleGFtcGxlLmNvbSIsInJvbGUiOiJhZG1pbiIsImlhdCI6MTcxMTExMjYwMCwiZXhwIjoxNzExMTE2MjAwfQ.abc123signatureThe token has three parts separated by dots: header, payload, and signature. The signature ensures the token has not been tampered with.
The secret parameter is required -- pass your secret key directly or read it from the TINA4_SECRET env var.
Legacy aliases:
Auth.getToken()and the standalonegetToken()function still work. Use the primary name in new code.
Token Expiry#
Pass the expiry time as the third argument to getToken() in minutes:
const token = Auth.getToken(payload, secret, 60); // 1 hour (default)| Value | Duration |
|---|---|
15 | 15 minutes |
60 | 1 hour (default) |
1440 | 24 hours |
10080 | 7 days |
You can also configure the default expiry in .env:
TINA4_TOKEN_LIMIT=1440The value is in minutes. 1440 is 24 hours.
Validating a Token#
const payload = Auth.validToken(token, secret);// Returns the payload object if valid, null if invalid or expiredvalidToken() returns the decoded payload on success, not a boolean. This lets you validate and read the token in one step. Returns null if the token is invalid or expired.
Legacy alias:
Auth.validateToken()and the standalonevalidToken()function work the same way.
Reading the Payload#
const payload = Auth.getPayload(token);Returns the decoded payload without validation -- it just decodes the token:
{ user_id: 42, email: "alice@example.com", role: "admin", iat: 1711112600, // issued at (Unix timestamp) exp: 1711116200 // expires at (Unix timestamp)}If the token cannot be decoded, getPayload() returns null.
Important:
getPayload()does not verify the signature or check expiry. UsevalidToken()when you need to confirm the token is trustworthy.
The Secret Key and Algorithm#
Tina4 Node.js uses HS256 (HMAC-SHA256) for JWT signing. It uses only the standard library -- zero external dependencies.
Set the secret key in .env:
TINA4_SECRET=my-super-secret-key-at-least-32-charsThe secret parameter on getToken() and validToken() is optional -- if omitted, Tina4 reads from the TINA4_SECRET env var. If neither is set, Tina4 falls back to generating a random key at secrets/jwt.key on first run. Setting TINA4_SECRET explicitly is recommended for production so all server instances share the same key.
Keep this key secret. If someone gets it, they can forge tokens.
3. Password Hashing#
Plain text passwords are a breach waiting to happen. Tina4 provides two functions for secure password handling.
Hashing a Password#
import { Auth } from "tina4-nodejs";โconst hash = await Auth.hashPassword("my-secure-password");Uses PBKDF2 from the standard library -- no external dependencies. Each hash includes a random salt, so hashing the same password twice produces different results.
Checking a Password#
const isCorrect = await Auth.checkPassword("my-secure-password", storedHash);// Returns true if the password matches the hashRegistration Example#
import { Router, Auth } from "tina4-nodejs";import { Database } from "tina4-nodejs/orm";โ/** * @noauth */Router.post("/api/register", async (req, res) => { const body = req.body;โ // Validate input if (!body.name || !body.email || !body.password) { return res.status(400).json({ error: "Name, email, and password are required" }); }โ if (body.password.length < 8) { return res.status(400).json({ error: "Password must be at least 8 characters" }); }โ const db = Database.getConnection();โ // Check if email already exists const existing = await db.fetchOne("SELECT id FROM users WHERE email = :email", { email: body.email }); if (existing !== null) { return res.status(409).json({ error: "Email already registered" }); }โ // Hash the password const passwordHash = await Auth.hashPassword(body.password);โ // Create the user await db.execute( "INSERT INTO users (name, email, password_hash) VALUES (:name, :email, :hash)", { name: body.name, email: body.email, hash: passwordHash } );โ const user = await db.fetchOne("SELECT id, name, email FROM users WHERE id = last_insert_rowid()");โ return res.status(201).json({ message: "Registration successful", user });});curl -X POST http://localhost:7148/api/register \ -H "Content-Type: application/json" \ -d '{"name": "Alice", "email": "alice@example.com", "password": "securePass123"}'{ "message": "Registration successful", "user": {"id": 1, "name": "Alice", "email": "alice@example.com"}}4. The Login Flow#
The complete login flow. Client sends credentials. Server validates them. Server returns a JWT token.
import { Router, Auth } from "tina4-nodejs";import { Database } from "tina4-nodejs/orm";โ/** * @noauth */Router.post("/api/login", async (req, res) => { const body = req.body;โ if (!body.email || !body.password) { return res.status(400).json({ error: "Email and password are required" }); }โ const db = Database.getConnection();โ // Find the user const user = await db.fetchOne( "SELECT id, name, email, password_hash FROM users WHERE email = :email", { email: body.email } );โ if (user === null) { return res.status(401).json({ error: "Invalid email or password" }); }โ // Check the password if (!(await Auth.checkPassword(body.password, user.password_hash))) { return res.status(401).json({ error: "Invalid email or password" }); }โ // Generate a token const secret = process.env.TINA4_SECRET || "tina4-default-secret"; const token = Auth.getToken({ user_id: user.id, email: user.email, name: user.name }, secret);โ return res.json({ message: "Login successful", token, user: { id: user.id, name: user.name, email: user.email } });});Notice @noauth in the JSDoc comment. The login endpoint must be public. You cannot require a token to get a token.
curl -X POST http://localhost:7148/api/login \ -H "Content-Type: application/json" \ -d '{"email": "alice@example.com", "password": "securePass123"}'{ "message": "Login successful", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "user": { "id": 1, "name": "Alice", "email": "alice@example.com" }}The client stores this token (in localStorage, a cookie, or memory) and sends it with subsequent requests.
5. Using Tokens in Requests#
The client sends the token in the Authorization header with the Bearer prefix:
curl http://localhost:7148/api/profile \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."Or in frontend JavaScript:
// Frontend JavaScriptconst response = await fetch("/api/profile", { headers: { "Authorization": `Bearer ${token}`, "Content-Type": "application/json", },});The token travels in the Authorization header with the Bearer prefix. The middleware extracts it, verifies it, and populates req.user with the decoded payload.
6. Protecting Routes#
Auth Middleware#
Create a reusable auth middleware:
import { Auth } from "tina4-nodejs";โfunction authMiddleware(req, res, next) { const authHeader = req.headers["authorization"] ?? "";โ if (!authHeader || !authHeader.startsWith("Bearer ")) { res({ error: "Authorization header required" }, 401); return; }โ const token = authHeader.substring(7); // Remove "Bearer " prefix const secret = process.env.TINA4_SECRET || "tina4-default-secret";โ const payload = Auth.validToken(token, secret); if (payload === null) { res({ error: "Invalid or expired token" }, 401); return; }โ (req as any).user = payload; // Attach user data to the requestโ next();}Applying Middleware to Routes#
import { Router } from "tina4-nodejs";โRouter.get("/api/profile", async (req, res) => { return res.json({ user_id: (req as any).user.user_id, email: (req as any).user.email, name: (req as any).user.name });}, [authMiddleware]);# Without token -- 401curl http://localhost:7148/api/profile{"error":"Authorization header required"}# With valid token -- 200curl http://localhost:7148/api/profile \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."{ "user_id": 1, "email": "alice@example.com", "name": "Alice"}Applying Middleware to a Group#
import { Router } from "tina4-nodejs";โRouter.group("/api/admin", [authMiddleware], (router) => {โ router.get("/stats", async (req, res) => { return res.json({ active_users: 42 }); });โ router.get("/logs", async (req, res) => { return res.json({ logs: [] }); });โ});Every route in the group requires a valid token.
7. @noauth and @secured Decorators#
These JSDoc annotations control authentication at the route level.
@noauth -- Skip Authentication#
Use @noauth for public endpoints that should bypass any global or group-level auth:
import { Router } from "tina4-nodejs";โ/** * @noauth */Router.get("/api/public/health", async (req, res) => { return res.json({ status: "ok" });});โ/** * @noauth */Router.post("/api/login", async (req, res) => { // Login logic});โ/** * @noauth */Router.post("/api/register", async (req, res) => { // Registration logic});@secured -- Require Authentication for GET Routes#
By default, POST, PUT, PATCH, and DELETE routes are considered secured. GET routes are public. Use @secured to explicitly protect a GET route:
import { Router } from "tina4-nodejs";โ/** * @secured */Router.get("/api/me", async (req, res) => { // This GET route requires authentication return res.json((req as any).user);});Role-Based Authorization#
Combine auth middleware with role checks:
import { Auth } from "tina4-nodejs";โfunction requireRole(role: string) { return function (req, res, next) { const authHeader = req.headers["authorization"] ?? ""; if (!authHeader || !authHeader.startsWith("Bearer ")) { res({ error: "Authorization required" }, 401); return; }โ const token = authHeader.substring(7); const secret = process.env.TINA4_SECRET || "tina4-default-secret"; const payload = Auth.validToken(token, secret); if (payload === null) { res({ error: "Invalid or expired token" }, 401); return; }โ if ((payload.role ?? "") !== role) { res({ error: `Forbidden. Required role: ${role}` }, 403); return; }โ (req as any).user = payload; next(); };}Use it as middleware:
import { Router } from "tina4-nodejs";โRouter.delete("/api/users/:id", async (req, res) => { // Only admins can delete users return res.json({ deleted: true });}, [requireRole("admin")]);8. CSRF Protection#
Traditional form-based applications (not SPAs) need CSRF protection. Cross-Site Request Forgery attacks trick a user's browser into submitting a form to your server. The browser sends cookies automatically -- the attacker rides on the user's session.
CSRF tokens stop this. Each form gets a unique token. When the form submits, the server checks the token. If it does not match, the request is rejected.
Generating a Token#
In your template, include the CSRF token in every form:
<form method="POST" action="/profile/update"> {{ form_token() }} <div class="form-group"> <label for="name">Name</label> <input type="text" name="name" id="name" value="{{ user.name }}"> </div> <button type="submit">Update Profile</button></form>{{ form_token() }} renders a hidden input field:
<input type="hidden" name="_token" value="abc123randomtoken456">Validating the Token#
In your route handler, check the token:
import { Router, Auth } from "tina4-nodejs";โRouter.post("/profile/update", async (req, res) => { // Validate CSRF token if (!Auth.validateFormToken(req.body._token ?? "")) { return res.status(403).json({ error: "Invalid form token. Please refresh and try again." }); }โ // Process the form... return res.redirect("/profile");});The CSRF token is tied to the session and expires after a single use. A malicious site cannot forge a form submission because it cannot guess the token.
CSRF Middleware#
For automatic validation on all POST/PUT/DELETE requests, use the CSRF middleware:
import { csrfMiddleware } from "tina4-nodejs";โ// Apply globally to all form-based routesRouter.post("/profile/update", async (req, res) => { // CSRF validation happens automatically return res.redirect("/profile");}, [csrfMiddleware]);When to Use CSRF Tokens#
Use CSRF tokens for:
- HTML forms submitted by browsers
- Any POST/PUT/DELETE from server-rendered pages
You do not need CSRF tokens for:
- API endpoints that use JWT (the Bearer token already proves the request is intentional)
- Single-page applications that use
fetch()with custom headers
9. Sessions#
Tina4 supports server-side sessions for storing per-user state between requests. JWTs handle API authentication. Sessions handle stateful web pages. Both work side by side.
Session Configuration#
Set the session backend in .env:
# File-based sessions (default)TINA4_SESSION_BACKEND=fileโ# RedisTINA4_SESSION_BACKEND=redisTINA4_SESSION_REDIS_HOST=localhostTINA4_SESSION_REDIS_PORT=6379โ# MongoDBTINA4_SESSION_BACKEND=mongodbTINA4_SESSION_REDIS_HOST=localhostTINA4_SESSION_REDIS_PORT=27017โ# ValkeyTINA4_SESSION_BACKEND=valkeyTINA4_SESSION_REDIS_HOST=localhostTINA4_SESSION_REDIS_PORT=6379File-based sessions work out of the box. No extra dependencies. For production deployments with multiple servers, use Redis or Valkey so sessions are shared across instances.
Using Sessions#
Access session data via req.session:
import { Router } from "tina4-nodejs";โRouter.post("/login-form", async (req, res) => { // After validating credentials... req.session.userId = 42; req.session.userName = "Alice"; req.session.loggedIn = true;โ return res.redirect("/dashboard");});โRouter.get("/dashboard", async (req, res) => { if (!req.session.loggedIn) { return res.redirect("/login"); }โ return res.render("dashboard.html", { userName: req.session.userName });});โRouter.post("/logout", async (req, res) => { // Clear all session data req.session = {};โ return res.redirect("/login");});Sessions complement JWT tokens. Use JWT for stateless API authentication. Use sessions for traditional web applications with server-rendered pages.
Session Options#
TINA4_SESSION_TTL=3600 # Session lifetime in seconds (default: 3600)TINA4_SESSION_NAME=tina4_session # Cookie name for the session ID10. Token Refresh#
Tokens expire. When they do, Auth.validToken() returns null and the middleware rejects the request with a 401. The user must log in again -- unless you implement token refresh.
A refresh endpoint issues a new token before the current one expires:
import { Router, Auth } from "tina4-nodejs";โRouter.post("/api/auth/refresh", async (req, res) => { // req.user is populated by auth middleware const secret = process.env.TINA4_SECRET || "tina4-default-secret"; const newToken = Auth.getToken({ user_id: req.user.user_id, email: req.user.email, role: req.user.role, }, secret);โ return res.json({ token: newToken });}, [authMiddleware]);The frontend can call this endpoint periodically to keep the session alive without requiring re-login. A common pattern: a short-lived access token (15 minutes) paired with a long-lived refresh token (7 days). The refresh token can mint new access tokens without re-entering credentials.
11. Exercise: Build Login, Register, and Profile#
Build a complete authentication system with registration, login, profile viewing, and password changing.
Requirements#
- Create a
userstable migration with:id,name,email(unique),password_hash,role(default "user"),created_at - Build these endpoints:
| Method | Path | Auth | Description |
|---|---|---|---|
POST | /api/register | @noauth | Create an account. Validate name, email, password (min 8 chars). |
POST | /api/login | @noauth | Login. Return JWT token. |
GET | /api/profile | secured | Get current user's profile from token. |
PUT | /api/profile | secured | Update name and email. |
PUT | /api/profile/password | secured | Change password. Require current password. |
- Create auth middleware that extracts the user from the JWT and attaches it to
req.user.
Test with:#
# Registercurl -X POST http://localhost:7148/api/register \ -H "Content-Type: application/json" \ -d '{"name": "Alice", "email": "alice@example.com", "password": "securePass123"}'โ# Logincurl -X POST http://localhost:7148/api/login \ -H "Content-Type: application/json" \ -d '{"email": "alice@example.com", "password": "securePass123"}'โ# Save the token from login response, then:โ# Get profilecurl http://localhost:7148/api/profile \ -H "Authorization: Bearer YOUR_TOKEN_HERE"โ# Update profilecurl -X PUT http://localhost:7148/api/profile \ -H "Authorization: Bearer YOUR_TOKEN_HERE" \ -H "Content-Type: application/json" \ -d '{"name": "Alice Smith"}'โ# Change passwordcurl -X PUT http://localhost:7148/api/profile/password \ -H "Authorization: Bearer YOUR_TOKEN_HERE" \ -H "Content-Type: application/json" \ -d '{"current_password": "securePass123", "new_password": "evenMoreSecure456"}'โ# Try with no token (should fail)curl http://localhost:7148/api/profile12. Solution#
Migration#
Create migrations/20260322160000_create_users_table.sql:
-- UPCREATE TABLE users ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, email TEXT NOT NULL UNIQUE, password_hash TEXT NOT NULL, role TEXT NOT NULL DEFAULT 'user', created_at TEXT DEFAULT CURRENT_TIMESTAMP);โ-- DOWNDROP TABLE IF EXISTS users;tina4 migrateRoutes#
Create src/routes/auth.ts:
import { Router, Auth } from "tina4-nodejs";import { Database } from "tina4-nodejs/orm";โโfunction authMiddleware(req, res, next) { const authHeader = req.headers["authorization"] ?? "";โ if (!authHeader || !authHeader.startsWith("Bearer ")) { res({ error: "Authorization required. Send: Authorization: Bearer <token>" }, 401); return; }โ const token = authHeader.substring(7); const secret = process.env.TINA4_SECRET || "tina4-default-secret";โ const payload = Auth.validToken(token, secret); if (payload === null) { res({ error: "Invalid or expired token. Please login again." }, 401); return; }โ req.user = payload;โ next();}โโ/** * @noauth */Router.post("/api/register", async (req, res) => { const body = req.body; const errors: string[] = [];โ if (!body.name) errors.push("Name is required"); if (!body.email) errors.push("Email is required"); if (!body.password) errors.push("Password is required"); else if (body.password.length < 8) errors.push("Password must be at least 8 characters");โ if (errors.length > 0) { return res.status(400).json({ errors }); }โ const db = Database.getConnection();โ const existing = await db.fetchOne("SELECT id FROM users WHERE email = :email", { email: body.email }); if (existing !== null) { return res.status(409).json({ error: "Email already registered" }); }โ const hash = await Auth.hashPassword(body.password);โ await db.execute( "INSERT INTO users (name, email, password_hash) VALUES (:name, :email, :hash)", { name: body.name, email: body.email, hash } );โ const user = await db.fetchOne("SELECT id, name, email, role, created_at FROM users WHERE id = last_insert_rowid()");โ return res.status(201).json({ message: "Registration successful", user });});โโ/** * @noauth */Router.post("/api/login", async (req, res) => { const body = req.body;โ if (!body.email || !body.password) { return res.status(400).json({ error: "Email and password are required" }); }โ const db = Database.getConnection();โ const user = await db.fetchOne( "SELECT id, name, email, password_hash, role FROM users WHERE email = :email", { email: body.email } );โ if (user === null || !(await Auth.checkPassword(body.password, user.password_hash))) { return res.status(401).json({ error: "Invalid email or password" }); }โ const secret = process.env.TINA4_SECRET || "tina4-default-secret"; const token = Auth.getToken({ user_id: user.id, email: user.email, name: user.name, role: user.role }, secret);โ return res.json({ message: "Login successful", token, user: { id: user.id, name: user.name, email: user.email, role: user.role } });});โโRouter.get("/api/profile", async (req, res) => { const db = Database.getConnection();โ const user = await db.fetchOne( "SELECT id, name, email, role, created_at FROM users WHERE id = :id", { id: req.user.user_id } );โ if (user === null) { return res.status(404).json({ error: "User not found" }); }โ return res.json(user);}, [authMiddleware]);โโRouter.put("/api/profile", async (req, res) => { const db = Database.getConnection(); const body = req.body; const userId = req.user.user_id;โ // Check if the new email is already taken by another account if (body.email) { const existing = await db.fetchOne( "SELECT id FROM users WHERE email = :email AND id != :id", { email: body.email, id: userId } ); if (existing !== null) { return res.status(409).json({ error: "Email already in use by another account" }); } }โ const current = await db.fetchOne("SELECT * FROM users WHERE id = :id", { id: userId });โ await db.execute( "UPDATE users SET name = :name, email = :email WHERE id = :id", { name: body.name ?? current.name, email: body.email ?? current.email, id: userId } );โ const updated = await db.fetchOne( "SELECT id, name, email, role, created_at FROM users WHERE id = :id", { id: userId } );โ return res.json({ message: "Profile updated", user: updated });}, [authMiddleware]);โโRouter.put("/api/profile/password", async (req, res) => { const db = Database.getConnection(); const body = req.body; const userId = req.user.user_id;โ if (!body.current_password || !body.new_password) { return res.status(400).json({ error: "Current password and new password are required" }); }โ if (body.new_password.length < 8) { return res.status(400).json({ error: "New password must be at least 8 characters" }); }โ const user = await db.fetchOne("SELECT password_hash FROM users WHERE id = :id", { id: userId });โ if (!(await Auth.checkPassword(body.current_password, user.password_hash))) { return res.status(401).json({ error: "Current password is incorrect" }); }โ const newHash = await Auth.hashPassword(body.new_password); await db.execute("UPDATE users SET password_hash = :hash WHERE id = :id", { hash: newHash, id: userId });โ return res.json({ message: "Password changed successfully" });}, [authMiddleware]);Expected output for register:
{ "message": "Registration successful", "user": { "id": 1, "name": "Alice", "email": "alice@example.com", "role": "user", "created_at": "2026-03-22 16:00:00" }}(Status: 201 Created)
Expected output for profile without token:
{"error":"Authorization required. Send: Authorization: Bearer <token>"}(Status: 401 Unauthorized)
13. Gotchas#
1. Token Expiry Confusion#
Problem: Tokens that worked yesterday now return 401.
Cause: The default token lifetime is 60 minutes. After that, the token is invalid even if the signature is correct.
Fix: Issue a new token at login. If your application needs long-lived sessions, use refresh tokens: a short-lived access token (15 minutes) paired with a long-lived refresh token (7 days) that can be used to get a new access token without re-entering credentials.
2. Secret Key Management#
Problem: Tokens generated on one server are invalid on another, or tokens stop working after a deployment.
Cause: Each server generated its own random secrets/jwt.key file. Or the key file was deleted or regenerated during deployment.
Fix: Set TINA4_SECRET in .env explicitly and use the same value across all servers. Store it in your deployment secrets manager (not in version control). If the key changes, all existing tokens become invalid and users must log in again.
3. CORS with Authentication#
Problem: Frontend requests with the Authorization header fail with a CORS error, even though CORS_ORIGINS=* is set.
Cause: When the browser sends an Authorization header, it first sends a preflight OPTIONS request. The server must respond to the OPTIONS request with the correct CORS headers, including Access-Control-Allow-Headers: Authorization.
Fix: Tina4 handles preflight requests automatically. Make sure CORS_ORIGINS is set correctly. If it is still failing, check that you are not overriding CORS headers in middleware.
4. Storing Tokens in localStorage#
Problem: Your token is stolen via an XSS attack because it was stored in localStorage.
Cause: Any JavaScript on the page can read localStorage, including injected scripts from an XSS vulnerability.
Fix: Store tokens in httpOnly cookies when possible -- they cannot be accessed by JavaScript. For SPAs that must use localStorage, implement strict Content Security Policy headers and sanitize all user input.
5. Forgetting @noauth on Login#
Problem: Your login endpoint returns 401 -- you cannot log in because the endpoint requires authentication.
Cause: If you have global auth middleware, the login endpoint needs the @noauth annotation to bypass it.
Fix: Add @noauth in a JSDoc comment above your login and register routes. Without it, users cannot authenticate because authentication is required to authenticate -- a catch-22.
6. Password Hash Column Too Short#
Problem: Registration fails with a database error about the password hash being too long.
Cause: PBKDF2 hashes can be long. If your password_hash column is defined as VARCHAR(50), it gets truncated.
Fix: Use TEXT for the password hash column, or at minimum VARCHAR(255). Never constrain the hash length.
7. Token in URL Query Parameters#
Problem: Tokens in URLs like /api/profile?token=eyJ... leak through browser history, server logs, and the Referer header.
Cause: Query parameters are visible in many places where headers are not.
Fix: Always send tokens in the Authorization header, never in the URL. The only exception is WebSocket connections, where the initial HTTP upgrade request cannot carry custom headers -- use a short-lived token for that case.