# @kree4js/http-listen

HTTP server-side connection provider for Kree4JS.

Enables a Kree4JS node to accept inbound HTTP connections for RPC communication.

## Installation

```bash
npm install @kree4js/http-listen
```

## Quick Start

```javascript
import { create } from '@kree4js/kree4n'

const node = create('server', 'HTTP Server')
await node.listen('http://0.0.0.0:8080')
```

## License

Apache-2.0
