deno/cli/tools/repl
Matt Mastracci 2f8825a935
feat: Add deno serve subcommand (#23511)
By default, `deno serve` will assign port 8000 (like `Deno.serve`).
Users may choose a different port using `--port`.

`deno serve /tmp/file.ts`

`server.ts`:
```ts
export default {
  fetch(req) {
    return new Response("hello world!\n");
  },
};
```
2024-04-24 19:45:49 +00:00
..
channel.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
editor.rs chore: fix typos (#22677) 2024-03-04 14:28:57 +00:00
mod.rs feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
session.rs fix(cli): Don't panic on invalid emit options (#23463) 2024-04-23 08:50:50 -07:00