JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17033
  • Score
    100M100P100Q136992F
  • License MIT

Node adapter plugin for Elysia

Package Exports

  • @elysiajs/node

Readme

@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))