Ecosyste.ms: Awesome
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: 24 days ago
JSON representation
Deno-like http serve
- Host: GitHub
- URL: https://github.com/mntm-lib/http-web
- Owner: mntm-lib
- Created: 2022-07-06T20:44:50.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-08T18:15:32.000Z (about 2 years ago)
- Last Synced: 2024-10-01T07:20:15.446Z (about 1 month ago)
- Topics: deno, http, serve, server, uwebsockets, uws
- Language: TypeScript
- Homepage: https://npm.im/@mntm/http-web
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"));
```