Skip to content

Commit

Permalink
Adding help information execution from "Nodemon" (#1084)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
umbrashia and SBoudrias committed Oct 3, 2022
1 parent 301c5ed commit 3202395
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ A collection of common interactive command line user interfaces.
2. [User Interfaces and Layouts](#layouts)
1. [Reactive Interface](#reactive)
3. [Support](#support)
4. [Known issues](#issues)
5. [News](#news)
6. [Contributing](#contributing)
7. [License](#license)
8. [Plugins](#plugins)
4. [Nodemon](#nodemon-support)
5. [Known issues](#issues)
6. [News](#news)
7. [Contributing](#contributing)
8. [License](#license)
9. [Plugins](#plugins)

## Goal and Philosophy

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

## Nodemon Support

When executing with [`Nodemon`](https://www.npmjs.com/package/nodemon), you'll need to set `stdin: false` in your config:

```diff
{
"watch": [
"dist/"
],
"ext": "js, json",
+ "stdin": false,
"ignore": [
"src/*/.spec.ts",
"typescript",
"node_modules"
],
"events": {
"start": "cls || clear"
},
"script": "dist/myApp.js",
"restartable": false
}
```

## Known issues

<a name="issues"></a>
Expand Down

0 comments on commit 3202395

Please sign in to comment.