Skip to content

Commit 8e6ea2e

Browse files
committed
docs: drop redundant file inventory after tree diagram
The tree above already names the three files; restating them in prose adds nothing. Keep just the substance: what deno.json is for, and the shape of main.ts and main_test.ts.
1 parent eddbc72 commit 8e6ea2e

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

runtime/getting_started/first_project.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ my_project
2828
└── main.ts
2929
```
3030

31-
A `deno.json` file is created to
32-
[configure your project](/runtime/fundamentals/configuration/), and two
33-
TypeScript files are created; `main.ts` and `main_test.ts`. The `main.ts` file
34-
contains a small HTTP server built on [`Deno.serve`](/api/deno/~/Deno.serve). It
35-
shows off Deno's built-in HTTP server, `Response.json()`, and TypeScript working
36-
out of the box. The handler is exported and guarded by `import.meta.main`, so
37-
`main_test.ts` can import and call it directly without binding to a port.
31+
[`deno.json`](/runtime/fundamentals/configuration/) holds your project
32+
configuration. `main.ts` contains a small HTTP server built on
33+
[`Deno.serve`](/api/deno/~/Deno.serve), showing off the built-in HTTP server,
34+
`Response.json()`, and TypeScript working out of the box. The handler is
35+
exported and guarded by `import.meta.main`, so `main_test.ts` can import and
36+
call it directly without binding to a port.
3837

3938
## Run your project
4039

0 commit comments

Comments
 (0)