deno/cli/tools/test
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
..
reporters fix(cli): output more detailed information for steps when using JUnit reporter (#22797) 2024-03-26 00:08:46 +09:00
channel.rs fix(cli): Identify and fix a test deadlock (#23411) 2024-04-16 15:14:59 -06:00
fmt.rs fix(ext/fs): account for all ops in leak checks (#23300) 2024-04-10 02:47:01 +00:00
mod.rs feat: Add deno serve subcommand (#23511) 2024-04-24 19:45:49 +00:00