2019-01-15 11:09:55 -05:00
|
|
|
# http
|
2018-12-18 23:30:44 -05:00
|
|
|
|
2019-01-15 11:09:55 -05:00
|
|
|
A framework for creating HTTP/HTTPS server.
|
|
|
|
|
|
|
|
## Example
|
2018-12-18 23:30:44 -05:00
|
|
|
|
|
|
|
```typescript
|
2019-02-15 11:03:57 -05:00
|
|
|
import { createServer } from "https://deno.land/x/http/server.ts";
|
|
|
|
import { encode } from "https://deno.land/x/strings/strings.ts";
|
2018-12-18 23:30:44 -05:00
|
|
|
|
|
|
|
async function main() {
|
2019-02-15 11:03:57 -05:00
|
|
|
const server = createServer();
|
|
|
|
server.handle("/", async (req, res) => {
|
|
|
|
await res.respond({
|
|
|
|
status: 200,
|
|
|
|
body: encode("ok")
|
|
|
|
});
|
|
|
|
});
|
|
|
|
server.handle(new RegExp("/foo/(?<id>.+)"), async (req, res) => {
|
|
|
|
const { id } = req.match.groups;
|
|
|
|
await res.respondJson({ id });
|
|
|
|
});
|
|
|
|
server.listen("127.0.0.1:8080");
|
2018-12-18 23:30:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
```
|
|
|
|
|
|
|
|
### File Server
|
|
|
|
|
|
|
|
A small program for serving local files over HTTP.
|
|
|
|
|
|
|
|
Add the following to your `.bash_profile`
|
|
|
|
|
|
|
|
```
|
2019-01-12 16:50:04 -05:00
|
|
|
alias file_server="deno https://deno.land/x/http/file_server.ts --allow-net"
|
2018-12-18 23:30:44 -05:00
|
|
|
```
|