0.0.0-alpha.0 • Published 10 months ago

@elysiajs/node v0.0.0-alpha.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

@elysiajs/node

This plugin is in an experimental state (under heavy development), and SHOULD NOT BE USED on production

Plugin for elysia using Elysia on NodeJS

Installation

bun add @elysiajs/node

Example

import { Elysia } from 'elysia'
import { node } from '@elysiajs/node'

const app = new Elysia()
    .get('/', () => 'hi')
    .use(node(8080))