Skip to content

Commit 3202395

Browse files
umbrashiaSBoudrias
andauthored
Adding help information execution from "Nodemon" (#1084)
* Adding help information execution from "Nodemon" Many developers wants hot reload execution using "Nodemon" and ``` "stdin": false ```` is very useful, without stdin property "list" option not worked properly * Adding Nodemon run reference for developer help... Many developer when testing or developing programs with hot reload feature the always prefer NODEMON program "stdin": false, "restartable": false * Update README.md all updates successfully updated * Update README.md navigation link is updated * Update README.md Co-authored-by: Simon Boudrias <admin@simonboudrias.com>
1 parent 301c5ed commit 3202395

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

README.md

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ A collection of common interactive command line user interfaces.
2222
2. [User Interfaces and Layouts](#layouts)
2323
1. [Reactive Interface](#reactive)
2424
3. [Support](#support)
25-
4. [Known issues](#issues)
26-
5. [News](#news)
27-
6. [Contributing](#contributing)
28-
7. [License](#license)
29-
8. [Plugins](#plugins)
25+
4. [Nodemon](#nodemon-support)
26+
5. [Known issues](#issues)
27+
6. [News](#news)
28+
7. [Contributing](#contributing)
29+
8. [License](#license)
30+
9. [Plugins](#plugins)
3031

3132
## Goal and Philosophy
3233

@@ -386,6 +387,30 @@ look at issues found on other command line - feel free to report any!
386387
- gnome-terminal (Terminal GNOME)
387388
- konsole
388389

390+
## Nodemon Support
391+
392+
When executing with [`Nodemon`](https://www.npmjs.com/package/nodemon), you'll need to set `stdin: false` in your config:
393+
394+
```diff
395+
{
396+
"watch": [
397+
"dist/"
398+
],
399+
"ext": "js, json",
400+
+ "stdin": false,
401+
"ignore": [
402+
"src/*/.spec.ts",
403+
"typescript",
404+
"node_modules"
405+
],
406+
"events": {
407+
"start": "cls || clear"
408+
},
409+
"script": "dist/myApp.js",
410+
"restartable": false
411+
}
412+
```
413+
389414
## Known issues
390415

391416
<a name="issues"></a>

0 commit comments

Comments
 (0)