{"library":"rajt","title":"Rajt – Serverless Bundler Layer for AWS Lambda & Cloudflare Workers","description":"Rajt (v0.0.106, pre-1.0) is a TypeScript-native, fully typed serverless framework (not a runtime) that acts as a bundler layer for AWS Lambda (Node.js ≥18, LLRT) and Cloudflare Workers. It provides a router, middleware, and type-safe request/response handling with zero external runtime dependencies. Its key differentiators: single interface across Lambda and Workers, tree-shakable bundler integration, and strict typing that catches misconfigurations at compile time. Active development with frequent releases; not stable yet. Consider alternatives like @aws-lambda-powertools, Hono, or Itty Router for production.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install rajt"],"cli":null},"imports":["import { Rajt } from 'rajt'","import { Router } from 'rajt'","import { defineConfig } from 'rajt'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { Rajt, Router } from 'rajt';\n\nconst router = new Router();\nrouter.get('/hello', async (req) => {\n  return new Response('Hello, World!');\n});\n\nconst app = new Rajt();\napp.use(router);\n\nexport const handler = app.handle;\n","lang":"typescript","description":"Creates a basic HTTP server using Rajt's router and exports the handler for AWS Lambda or Cloudflare Workers.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}