Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mntm-lib/http-web

Deno-like http serve
https://github.com/mntm-lib/http-web

deno http serve server uwebsockets uws

Last synced: 2 days ago
JSON representation

Deno-like http serve

Awesome Lists containing this project

README

        

# @mntm/http-web

> See [documentation](https://doc.deno.land/https://deno.land/[email protected]/http/server.ts/~/serve)

## Basic usage

```ts
import { serve, Response } from '@mntm/http-web';

serve(() => new Response("Hello, world"));
```