Package Exports
- alepha
- alepha/batch
- alepha/bucket
- alepha/cache
- alepha/cache/redis
- alepha/command
- alepha/core
- alepha/datetime
- alepha/email
- alepha/file
- alepha/lock
- alepha/lock/redis
- alepha/logger
- alepha/postgres
- alepha/queue
- alepha/queue/redis
- alepha/react
- alepha/react/auth
- alepha/react/form
- alepha/react/head
- alepha/react/i18n
- alepha/redis
- alepha/retry
- alepha/router
- alepha/scheduler
- alepha/security
- alepha/server
- alepha/server/cache
- alepha/server/compress
- alepha/server/cookies
- alepha/server/cors
- alepha/server/health
- alepha/server/helmet
- alepha/server/links
- alepha/server/metrics
- alepha/server/multipart
- alepha/server/proxy
- alepha/server/security
- alepha/server/static
- alepha/server/swagger
- alepha/topic
- alepha/topic/redis
- alepha/vite
Readme
Alepha is a convention-driven TypeScript framework for building robust, end-to-end type-safe applications, from serverless APIs to full-stack React apps.
Installation
npm install alephaUsage
Minimalist http server with a single endpoint.
import { run } from "alepha";
import { $action } from "alepha/server";
class App {
hello = $action({
handler: () => "Hello world!",
})
}
run(App);👉 For more information, please visit the documentation.
Alepha