# @elysiajs/node
Adapter for [elysia](https://github.com/elysiajs/elysia) to use Elysia in Nodejs environment.

## Installation
```bash
bun add @elysiajs/node
```

## Example
```typescript
import { Elysia } from 'elysia'
import { node } from '@elysiajs/node'

const app = new Elysia({ adapter: node() })
    .get('/', () => 'Hello Node!')
    .listen(3000)
```

### Note
Node adapter is not feature complete yet. Some features are not supported, such as:
- not support `ws` method
