Skip to content

Commit f32e6ec

Browse files
fzn0xremy
authored andcommitted
docs(installation): Minor Improvements
1 parent a8acae2 commit f32e6ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ nodemon does **not** require *any* additional changes to your code or method of
1616
Either through cloning with git or by using [npm](http://npmjs.org) (the recommended way):
1717

1818
```bash
19-
npm install -g nodemon
19+
npm install -g nodemon # or using yarn: yarn global add nodemon
2020
```
2121

2222
And nodemon will be installed globally to your system path.
2323

2424
You can also install nodemon as a development dependency:
2525

2626
```bash
27-
npm install --save-dev nodemon
27+
npm install --save-dev nodemon # or using yarn: yarn add nodemon -D
2828
```
2929

30-
With a local installation, nodemon will not be available in your system path. Instead, the local installation of nodemon can be run by calling it from within an npm script (such as `npm start`) or using `npx nodemon`.
30+
With a local installation, nodemon will not be available in your system path or you can't use it directly from the command line. Instead, the local installation of nodemon can be run by calling it from within an npm script (such as `npm start`) or using `npx nodemon`.
3131

3232
# Usage
3333

0 commit comments

Comments
 (0)