@hazelnutcloud/eden
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

@elysiajs/eden

Fully type-safe Elysia client refers to the documentation

Installation

bun add elysia @elysiajs/eden

Example

// server.ts
import { Elysia, t } from 'elysia'

const app = new Elysia()
    .get('/', () => 'Hi Elysia')
    .get('/id/:id', ({ params: { id } }) => id)
    .post('/mirror', ({ body }) => body, {
        schema: {
            body: t.Object({
                id: t.Number(),
                name: t.String()
            })
        }
    })
    .listen(8080)

export type App = typeof app

// client.ts
import { edenTreaty } from '@elysiajs/eden'
import type { App } from './server'

const app = edenTreaty<App>('http://localhost:8080')

// data: Hi Elysia (fully type-safe)
const { data: pong } = app.index.get()

// data: 1895
const { data: id } = client.id.1895.get()

// data: { id: 1895, name: 'Skadi' }
const { data: nendoroid } = app.mirror.post({
    id: 1895,
    name: 'Skadi'
})

/@hazelnutcloud/eden/

    Package Sidebar

    Install

    npm i @hazelnutcloud/eden

    Weekly Downloads

    0

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    100 kB

    Total Files

    37

    Last publish

    Collaborators

    • nutcloud