Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/content/docs/en/4x/starter/generator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ PS> $env:DEBUG='myapp:*'; npm start

Then, load `http://localhost:3000/` in your browser to access the app.

## TypeScript apps

The official `express-generator` package creates a JavaScript application skeleton.
For a TypeScript starter, use a community generator such as [`express-generator-typescript`](https://github.com/seanpmaxwell/express-generator-typescript).

The generated app has the following directory structure:

```bash
Expand Down
5 changes: 5 additions & 0 deletions src/content/docs/en/5x/starter/generator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ PS> $env:DEBUG='myapp:*'; npm start

Then, load `http://localhost:3000/` in your browser to access the app.

## TypeScript apps

The official `express-generator` package creates a JavaScript application skeleton.
For a TypeScript starter, use a community generator such as [`express-generator-typescript`](https://github.com/seanpmaxwell/express-generator-typescript).

The generated app has the following directory structure:

```bash
Expand Down
Loading