Skip to content

Commit 8c6e4f8

Browse files
Merge branch 'patch-2' of https://github.com/micalevisk/docs.nestjs.com into micalevisk-patch-2
2 parents a89b34c + 533cd8b commit 8c6e4f8

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

content/introduction.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Nest provides an out-of-the-box application architecture which allows developers
1414

1515
#### Installation
1616

17-
To get started, you can either scaffold the project with the [Nest CLI](/cli/overview), or clone a starter project (both will produce the same outcome).
17+
To get started, you can either scaffold the project with the [Nest CLI](/cli/overview), or [clone a starter project](#alternatives) (both will produce the same outcome).
1818

1919
To scaffold the project with the Nest CLI, run the following commands. This will create a new project directory, and populate the directory with the initial core Nest files and supporting modules, creating a conventional base structure for your project. Creating a new project with the **Nest CLI** is recommended for first-time users. We'll continue with this approach in [First Steps](first-steps).
2020

@@ -42,8 +42,6 @@ Open your browser and navigate to [`http://localhost:3000/`](http://localhost:30
4242

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

45-
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.
46-
47-
```bash
48-
$ npm i --save @nestjs/core @nestjs/common rxjs reflect-metadata
49-
```
45+
You can also manually create a new project from scratch by installing the core and supporting packages. In this case, of course, you'll be responsible for creating the project boilerplate files yourself.
46+
In this case you should at least has the following dependencies: `@nestjs/core`, `@nestjs/common`, `rxjs` and `reflect-metadata`
47+
Here is a short article on how to create a full project: [5 steps to create a bare minimum NestJS app from scratch!](https://dev.to/micalevisk/5-steps-to-create-a-bare-minimum-nestjs-app-from-scratch-5c3b)

0 commit comments

Comments
 (0)