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
2 changes: 1 addition & 1 deletion content/cli/usages.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Creates and initializes a new Nest project. Prompts for package manager.
| `--dry-run` | Reports changes that would be made, but does not change the filesystem.<br/> Alias: `-d` |
| `--skip-git` | Skip git repository initialization.<br/> Alias: `-g` |
| `--skip-install` | Skip package installation.<br/> Alias: `-s` |
| `--package-manager [package-manager]` | Specify package manager. Use `npm`, `yarn`, or `pnpm`. Package manager must be installed globally.<br/> Alias: `-p` |
| `--package-manager [package-manager]` | Specify package manager. Use `npm`, `yarn`, `pnpm`, or `bun`. Package manager must be installed globally.<br/> Alias: `-p` |
| `--language [language]` | Specify programming language (`TS` or `JS`).<br/> Alias: `-l` |
| `--collection [collectionName]` | Specify schematics collection. Use package name of installed npm package containing schematic.<br/> Alias: `-c` |
| `--strict` | Start the project with the following TypeScript compiler flags enabled: `strictNullChecks`, `noImplicitAny`, `strictBindCallApply`, `forceConsistentCasingInFileNames`, `noFallthroughCasesInSwitch` |
Expand Down
2 changes: 1 addition & 1 deletion content/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Open your browser and navigate to [`http://localhost:3000/`](http://localhost:30

To install the JavaScript flavor of the starter project, use `javascript-starter.git` in the command sequence above.

You can also manually create a new project from scratch by installing the core and supporting files with **npm** (or **yarn**). In this case, of course, you'll be responsible for creating the project boilerplate files yourself.
You can also manually create a new project from scratch by installing the core and supporting files with **npm** (or **yarn**/**pnpm**/**bun**). In this case, of course, you'll be responsible for creating the project boilerplate files yourself.

```bash
$ npm i --save @nestjs/core @nestjs/common rxjs reflect-metadata
Expand Down