deno/cli/tools
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
..
bench feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
coverage refactor: move redirect handling into deno_graph (#23444) 2024-04-19 01:43:28 +00:00
init feat(init): use jsr specifier for @std/assert (#23073) 2024-03-27 18:51:52 +01:00
jupyter feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
lint fix: less aggressive vendor folder ignoring (#23100) 2024-03-27 14:25:39 -04:00
registry fix(publish): --dry-publish should error for gitignored excluded files (#23540) 2024-04-24 18:52:05 +00:00
repl feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
run feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
test feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00
vendor refactor: move redirect handling into deno_graph (#23444) 2024-04-19 01:43:28 +00:00
bundle.rs fix(cli): Don't panic on invalid emit options (#23463) 2024-04-23 08:50:50 -07:00
check.rs fix(check): ignore certain diagnostics in remote modules and when publishing (#23119) 2024-03-31 16:39:40 -04:00
compile.rs fix(cli): Don't panic on invalid emit options (#23463) 2024-04-23 08:50:50 -07:00
doc.rs refactor: move redirect handling into deno_graph (#23444) 2024-04-19 01:43:28 +00:00
fmt.rs fix: less aggressive vendor folder ignoring (#23100) 2024-03-27 14:25:39 -04:00
info.rs chore: enable clippy unused_async rule (#22834) 2024-03-11 23:48:00 -04:00
installer.rs refactor(flags): prepare for deno install changes (#23217) 2024-04-04 14:40:54 +00:00
mod.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
task.rs feat(task): support running npm binary commands in deno.json (#23478) 2024-04-20 20:13:46 -04:00
upgrade.rs chore(cli): move away from PathBuf in clap (#22036) 2024-03-14 23:53:46 +00:00