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

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: 3 months 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/std@0.147.0/http/server.ts/~/serve)

## Basic usage

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

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