JSPM

  • Created
  • Published
  • Downloads 828
  • Score
    100M100P100Q92497F
  • License MIT

Alepha is a convention-driven TypeScript framework for building robust, end-to-end type-safe applications, from serverless APIs to full-stack React apps.

Package Exports

  • alepha
  • alepha/batch
  • alepha/bucket
  • alepha/cache
  • alepha/cache/redis
  • alepha/command
  • alepha/core
  • alepha/datetime
  • alepha/file
  • alepha/lock
  • alepha/lock/redis
  • 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

Logo Alepha

🚧

npm npm npm npm GitHub stars

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 alepha

Usage

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.