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
4 changes: 4 additions & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ https://expressjs.com/sitemap-index.xml

https://coveralls.io/-*

# Exclude OpenJS Foundation Slack invite — redirects to a rotating Slack
# invite token that returns 403 to bots; the vanity URL itself is valid
https://slack-invite.openjsf.org.*

14 changes: 14 additions & 0 deletions src/content/docs/en/4x/starter/generator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,17 @@ The app structure created by the generator is just one of many ways to structure
Feel free to use this structure or modify it to best suit your needs.

</Alert>

## TypeScript

The `express-generator` tool scaffolds a JavaScript application. If you prefer to start from a TypeScript codebase, the community-maintained <a href="https://github.com/seanpmaxwell/express-generator-typescript" target="_blank" title="express-generator-typescript on GitHub">`express-generator-typescript`</a> project offers an equivalent generator that produces a ready-to-run TypeScript project:

```bash
$ npx express-generator-typescript myapp
```

<Alert type="info">

`express-generator-typescript` is a third-party project and is not maintained by the Express team.

</Alert>
14 changes: 14 additions & 0 deletions src/content/docs/en/5x/starter/generator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,17 @@ The app structure created by the generator is just one of many ways to structure
Feel free to use this structure or modify it to best suit your needs.

</Alert>

## TypeScript

The `express-generator` tool scaffolds a JavaScript application. If you prefer to start from a TypeScript codebase, the community-maintained <a href="https://github.com/seanpmaxwell/express-generator-typescript" target="_blank" title="express-generator-typescript on GitHub">`express-generator-typescript`</a> project offers an equivalent generator that produces a ready-to-run TypeScript project:

```bash
$ npx express-generator-typescript myapp
```

<Alert type="info">

`express-generator-typescript` is a third-party project and is not maintained by the Express team.

</Alert>
Loading