I'm using nodemon to manage a node.js process, and I would that process to auto-restart every 24h. Is there an elegant solution for this? I could also just crea
Is there a way to specify watch list using config files instead of command line? Command line method in nodemon's doc: I attempted to use a nodemon.json config
BSONTypeError: Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer at new BSONTypeError (C:\Projects file\warehouse-m
When using Nodemon I keep getting the EADDRINUSE error telling me the port is currently in use elsewhere even though it isn't. This error shows up almost every
I'm trying to use the nodemon package in an Electron project but when I try to execute this with nodemon main.js I catch this error in terminal: But when I
Error on terminal: nodemon.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:
Here are my files : package.json : "scripts": { "generate-interfaces": "ts-node src/cli/generate-interfaces.ts", "dist": "npm run generate-interfaces &&
I have node version 14 and all my node projects are working fine in node 14, but when I installed node version 16 and trying to run existing node projects, exis
I'm trying to run a dev server with TypeScript and an Angular application without transpiling ts files every time. What I found is that I can run .ts files with
I have a nodeJS app and I developp it with nodemon to restart everytime something change. So my package.json is like : "scripts": { "test": "echo \"Error: n
I have a simple node server written in typescript. My package.json is configured as: "scripts": { "build": "tsc", "dev": "nodemon --watch src/**/* -e ts,js