-
facing problems with nodemon and path of server is not working
-
All existing templates can be shipped with a hot module replacement feature whenever there is a file change using Nodemon.
This will improve the DX.
@Ashrockzzz2003 @Abhinav-ark
-
`npm install --save-dev nodemon` won't make it so they can run `nodemon`. They have to install it globally: `npm install -g nodemon`.
-
On server folder, the "start" script is:
![image](https://user-images.githubusercontent.com/54141596/211948801-e6fad255-49dd-468e-899a-4e285f290724.png)
but you don't have nodemon on your depende…
-
for some reason whewn i run the code
npm install
npm start -- --port [PORT]
with the port in it, it says: [nodemon] clean exit - waiting for changes before restart
-
I trying to run this command in WSL2 with Ubuntu 22.04
nohup nodemon --watch ./app/assets/stylesheets/ --ext scss,css --exec yarn build:css > /dev/null 2>&1 &
And seems is not working
Runnin…
-
With ASSETS/* in the nodemon ignore list, the dev script fails to start because the wildcard is expanded by the shell. Switching to quoted ('ASSETS/*') or dropping the wildcard (ASSETS/) allows the de…
-
Suggested Solution:
Add nodemon to the devDependencies section of package.json
-
-
I want use ts-node-dev in script.js ,but don't know how .
How to using ts-node-dev like nodemon below
```javascript
var nodemon = require('nodemon');
nodemon({ script: 'app.js' }).on('start', f…