Moved to 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
bun add @elysiajs/node
import { Elysia } from 'elysia'
import { node } from '@elysiajs/node'
const app = new Elysia()
.get('/', () => 'hi')
.use(node(8080))