Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

elysiajselysiajs 文档

Agent Skill

elysiajs 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

3

下载量

110
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:elysiajs(elysiajs 文档)
来源仓库:https://github.com/fellipeutaka/leon
仓库路径:skills/elysiajs
安装命令:
npx skills add https://github.com/fellipeutaka/leon --skill elysiajs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/fellipeutaka/leon --skill elysiajs

简介

elysiajs 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,原始 SKILL.md 摘录未提供。
  • elysiajs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ElysiaJS Development Skill

Always consult elysiajs.com/llms.txt for code examples and latest API.

Overview

ElysiaJS is a TypeScript framework for building Bun-first (but not limited to Bun) type-safe, high-performance backend servers. This skill provides comprehensive guidance for developing with Elysia, including routing, validation, authentication, plugins, integrations, and deployment.

When to Use This Skill

Trigger this skill when the user asks to:

  • Create or modify ElysiaJS routes, handlers, or servers
  • Setup validation with any Standard Schema library (Zod, Valibot, ArkType) or TypeBox
  • Implement authentication (JWT, session-based, macros, guards)
  • Add plugins (CORS, OpenAPI, Static files, JWT)
  • Integrate with external services (Drizzle ORM, Better Auth, Next.js, Eden Treaty)
  • Setup WebSocket endpoints for real-time features
  • Create unit tests for Elysia instances
  • Deploy Elysia servers to production

Quick Start

Quick scaffold:

bun create elysia app

Basic Server

import { Elysia, t, status } from 'elysia'

const app = new Elysia()
  .get('/', () => 'Hello World')
  .post('/user', ({ body }) => body, {
    body: t.Object({
      name: t.String(),
      age: t.Number()
    })
  })
  .get('/id/:id', ({ params: { id } }) => {
    if(id > 1_000_000) return status(404, 'Not Found')

    return id
  }, {
    params: t.Object({
      id: t.Number({ minimum: 1 })
    }),
    response: {
      200: t.Number(),
      404: t.Literal('Not Found')
    }
  })
  .listen(3000)
Note: This example uses TypeBox (t) for brevity. If your project uses Zod, Valibot, or another Standard Schema library, use that instead. See the "Validation" section below.

Basic Usage

HTTP Methods

import { Elysia } from 'elysia'

new Elysia()
  .get('/', 'GET')
  .post('/', 'POST')
  .put('/', 'PUT')
  .patch('/', 'PATCH')
  .delete('/', 'DELETE')
  .options('/', 'OPTIONS')
  .head('/', 'HEAD')

Path Parameters

.get('/user/:id', ({ params: { id } }) => id)
.get('/post/:id/:slug', ({ params }) => params)

Query Parameters

.get('/search', ({ query }) => query.q)
// GET /search?q=elysia → "elysia"

Request Body

.post('/user', ({ body }) => body)

Headers

.get('/', ({ headers }) => headers.authorization)

Validation (Standard Schema)

Elysia natively supports any schema library that implements the Standard Schema spec — Zod, Valibot, ArkType, Effect Schema, Yup, and others. You can also use the built-in TypeBox (t from 'elysia'). Mix and match validators freely within the same handler.

IMPORTANT: When the user's project already uses a Standard Schema library (Zod, Valibot, etc.), prefer that library over TypeBox. Only use TypeBox (t) if the project has no existing schema library or explicitly uses TypeBox.

With Zod

import { Elysia } from 'elysia'
import { z } from 'zod'

new Elysia()
  .post('/user', ({ body }) => body, {
    body: z.object({
      name: z.string(),
      age: z.number().min(0),
      email: z.string().email(),
      website: z.string().url().optional()
    })
  })

With Valibot

import { Elysia } from 'elysia'
import * as v from 'valibot'

new Elysia()
  .post('/user', ({ body }) => body, {
    body: v.object({
      name: v.string(),
      age: v.pipe(v.number(), v.minValue(0)),
      email: v.pipe(v.string(), v.email())
    })
  })

Mixing Validators

import { z } from 'zod'
import * as v from 'valibot'

new Elysia()
  .get('/id/:id', ({ params, query }) => params.id, {
    params: z.object({ id: z.coerce.number() }),
    query: v.object({ name: v.literal('Lilith') })
  })

With TypeBox (Built-in)

import { Elysia, t } from 'elysia'

new Elysia()
  .post('/user', ({ body }) => body, {
    body: t.Object({
      name: t.String(),
      age: t.Number(),
      email: t.String({ format: 'email' }),
      website: t.Optional(t.String({ format: 'uri' }))
    })
  })

File Upload

// With TypeBox
.post('/upload', ({ body }) => body.file, {
  body: t.Object({
    file: t.File({ type: 'image', maxSize: '5m' }),
    files: t.Files({ type: ['image/png', 'image/jpeg'] })
  })
})

// With Standard Schema — use fileType() for secure content-type validation
import { fileType } from 'elysia'
import { z } from 'zod'

.post('/upload', ({ body }) => body.file, {
  body: z.object({
    file: z.file().refine((file) => fileType(file, 'image/jpeg'))
  })
})

Response Validation

// Works with any schema library
.get('/user/:id', ({ params: { id } }) => ({
  id,
  name: 'John',
  email: 'john@example.com'
}), {
  params: z.object({ id: z.coerce.number() }),
  response: {
    200: z.object({
      id: z.number(),
      name: z.string(),
      email: z.string()
    }),
    404: z.string()
  }
})

TypeBox vs Standard Schema

FeatureTypeBox (t)Standard Schema (Zod, etc.)
Runtime validationYesYes
Type inferenceYesYes
OpenAPI schema generationAutomaticNot supported
Reference Models ('modelName')YesNot supported
File validation (t.File)Built-inUse fileType() utility
Auto-coercion (params/query)AutomaticLibrary-dependent (e.g., z.coerce)

Error Handling

.get('/user/:id', ({ params: { id }, status }) => {
  const user = findUser(id)

  if (!user) {
    return status(404, 'User not found')
  }

  return user
})

Guards (Apply to Multiple Routes)

// With TypeBox
.guard({
  params: t.Object({ id: t.Number() })
}, app => app
  .get('/user/:id', ({ params: { id } }) => id)
  .delete('/user/:id', ({ params: { id } }) => id)
)

// With Zod
.guard({
  params: z.object({ id: z.coerce.number() })
}, app => app
  .get('/user/:id', ({ params: { id } }) => id)
  .delete('/user/:id', ({ params: { id } }) => id)
)

Macro

.macro({
  hi: (word: string) => ({
    beforeHandle() { console.log(word) }
  })
})
.get('/', () => 'hi', { hi: 'Elysia' })

Project Structure (Recommended)

Elysia takes an unopinionated approach but based on user request. But without any specific preference, we recommend a feature-based and domain driven folder structure where each feature has its own folder containing controllers, services, and models.

src/
├── index.ts              # Main server entry
├── modules/
│   ├── auth/
│   │   ├── index.ts      # Auth routes (Elysia instance)
│   │   ├── service.ts    # Business logic
│   │   └── model.ts      # TypeBox schemas/DTOs
│   └── user/
│       ├── index.ts
│       ├── service.ts
│       └── model.ts
└── plugins/
    └── custom.ts

public/                   # Static files (if using static plugin)
test/                     # Unit tests

Each file has its own responsibility as follows:

  • Controller (index.ts): Handle HTTP routing, request validation, and cookie.
  • Service (service.ts): Handle business logic, decoupled from Elysia controller if possible.
  • Model (model.ts): Define the data structure and validation for the request and response.

Best Practice

Elysia is unopinionated on design pattern, but if not provided, we can relies on MVC pattern pair with feature based folder structure.

  • Controller:

- Prefers Elysia as a controller for HTTP dependant controller - For non HTTP dependent, prefers service instead unless explicitly asked - Use onError to handle local custom errors - Register Model to Elysia instance via Elysia.models({...models}) and prefix model by namespace Elysia.prefix('model', 'Namespace.') - Prefers Reference Model by name provided by Elysia instead of using an actual Model.name`

  • Service:

- Prefers class (or abstract class if possible) - Prefers interface/type derive from Model - Return status (import {status} from 'elysia') for error - Prefers return Error instead of throw Error

  • Models:

- Always export validation model and type of validation model - Custom Error should be in contains in Model

Elysia Key Concept

Elysia has a every important concepts/rules to understand before use.

Encapsulation - Isolates by Default

Lifecycles (hooks, middleware) don't leak between instances unless scoped.

Scope levels:

  • local (default) - current instance + descendants
  • scoped - parent + current + descendants
  • global - all instances
.onBeforeHandle(() => {}) // only local instance
.onBeforeHandle({ as: 'global' }, () => {}) // exports to all

Method Chaining - Required for Types

Must chain. Each method returns new type reference.

❌ Don't:

const app = new Elysia()
app.state('build', 1) // loses type
app.get('/', ({ store }) => store.build) // build doesn't exists

✅ Do:

new Elysia()
  .state('build', 1)
  .get('/', ({ store }) => store.build)

Explicit Dependencies

Each instance independent. Declare what you use.

const auth = new Elysia()
	.decorate('Auth', Auth)
	.model(Auth.models)

new Elysia()
  .get('/', ({ Auth }) => Auth.getProfile()) // Auth doesn't exists

new Elysia()
  .use(auth) // must declare
  .get('/', ({ Auth }) => Auth.getProfile())

Global scope when:

  • No types added (cors, helmet)
  • Global lifecycle (logging, tracing)

Explicit when:

  • Adds types (state, models)
  • Business logic (auth, db)

Deduplication

Plugins re-execute unless named:

new Elysia() // rerun on `.use`
new Elysia({ name: 'ip' }) // runs once across all instances

Order Matters

Events apply to routes registered after them.

.onBeforeHandle(() => console.log('1'))
.get('/', () => 'hi') // has hook
.onBeforeHandle(() => console.log('2')) // doesn't affect '/'

Type Inference

Inline functions only for accurate types.

For controllers, destructure in inline wrapper:

.post('/', ({ body }) => Controller.greet(body), {
  body: t.Object({ name: t.String() })
})

Get type from schema:

type MyType = typeof MyType.static

Reference Model

Model can be reference by name, especially great for documenting an API

new Elysia()
	.model({
		book: t.Object({
			name: t.String()
		})
	})
	.post('/', ({ body }) => body.name, {
		body: 'book'
	})

Model can be renamed by using .prefix / .suffix

new Elysia()
	.model({
		book: t.Object({
			name: t.String()
		})
	})
	.prefix('model', 'Namespace')
	.post('/', ({ body }) => body.name, {
		body: 'Namespace.Book'
	})

Once prefix, model name will be capitalized by default.

Technical Terms

The following are technical terms that is use for Elysia:

  • OpenAPI Type Gen - function name fromTypes from @elysiajs/openapi for generating OpenAPI from types, see plugins/openapi.md
  • Eden, Eden Treaty - e2e type safe RPC client for share type from backend to frontend

Resources

Use the following references as needed.

It's recommended to checkout route.md for as it contains the most important foundation building blocks with examples.

plugin.md and validation.md is important as well but can be check as needed.

references/

Detailed documentation split by topic:

  • bun-fullstack-dev-server.md - Bun Fullstack Dev Server with HMR. React without bundler.
  • cookie.md - Detailed documentation on cookie
  • deployment.md - Production deployment guide / Docker
  • eden.md - e2e type safe RPC client for share type from backend to frontend
  • guard.md - Setting validation/lifecycle all at once
  • macro.md - Compose multiple schema/lifecycle as a reusable Elysia via key-value (recommended for complex setup, eg. authentication, authorization, Role-based Access Check)
  • plugin.md - Decouple part of Elysia into a standalone component
  • route.md - Elysia foundation building block: Routing, Handler and Context
  • testing.md - Unit tests with examples
  • validation.md - Validation with Standard Schema (Zod, Valibot, ArkType, etc.) and TypeBox, including all custom validation rules
  • websocket.md - Real-time features

plugins/

Detailed documentation, usage and configuration reference for official Elysia plugin:

  • bearer.md - Add bearer capability to Elysia (@elysiajs/bearer)
  • cors.md - Out of box configuration for CORS (@elysiajs/cors)
  • cron.md - Run cron job with access to Elysia context (@elysiajs/cron)
  • graphql-apollo.md - Integration GraphQL Apollo (@elysiajs/graphql-apollo)
  • graphql-yoga.md - Integration with GraphQL Yoga (@elysiajs/graphql-yoga)
  • html.md - HTML and JSX plugin setup and usage (@elysiajs/html)
  • jwt.md - JWT / JWK plugin (@elysiajs/jwt)
  • openapi.md - OpenAPI documentation and OpenAPI Type Gen / OpenAPI from types (@elysiajs/openapi)
  • opentelemetry.md - OpenTelemetry, instrumentation, and record span utilities (@elysiajs/opentelemetry)
  • server-timing.md - Server Timing metric for debug (@elysiajs/server-timing)
  • static.md - Serve static files/folders for Elysia Server (@elysiajs/static)

integrations/

Guide to integrate Elysia with external library/runtime:

  • ai-sdk.md - Using Vercel AI SDK with Elysia
  • astro.md - Elysia in Astro API route
  • better-auth.md - Integrate Elysia with better-auth
  • cloudflare-worker.md - Elysia on Cloudflare Worker adapter
  • deno.md - Elysia on Deno
  • drizzle.md - Integrate Elysia with Drizzle ORM
  • expo.md - Elysia in Expo API route
  • nextjs.md - Elysia in Nextjs API route
  • nodejs.md - Run Elysia on Node.js
  • nuxt.md - Elysia on API route
  • prisma.md - Integrate Elysia with Prisma
  • react-email.d - Create and Send Email with React and Elysia
  • sveltekit.md - Run Elysia on Svelte Kit API route
  • tanstack-start.md - Run Elysia on Tanstack Start / React Query
  • vercel.md - Deploy Elysia to Vercel

examples/ (optional)

  • basic.ts - Basic Elysia example
  • body-parser.ts - Custom body parser example via .onParse
  • complex.ts - Comprehensive usage of Elysia server
  • cookie.ts - Setting cookie
  • error.ts - Error handling
  • file.ts - Returning local file from server
  • guard.ts - Setting mulitple validation schema and lifecycle
  • map-response.ts - Custom response mapper
  • redirect.ts - Redirect response
  • rename.ts - Rename context's property
  • schema.ts - Setup validation
  • state.ts - Setup global state
  • upload-file.ts - File upload with validation
  • websocket.ts - Web Socket for realtime communication

patterns/ (optional)

  • patterns/mvc.md - Detail guideline for using Elysia with MVC patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.23%
按下载量换算41

Claude

28.54%
按下载量换算31

Cursor

19.37%
按下载量换算21

Gemini CLI

9.7%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills