Category "nodemon"

How to automatically restart a node.js script daily using nodemon?

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

Nodemon - specifying extension watch list using config files

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

nodemon server crash in my local computer & not working

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

Nodemon EADDRINUSE error every time I save

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

Using nodemon doesn't recognize Electron package

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

How to fix error- nodemon.ps1 cannot be loaded because running scripts is disabled on this system, (without security risk)?

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:

ts-node-dev not restarting when changes made

Here are my files : package.json : "scripts": { "generate-interfaces": "ts-node src/cli/generate-interfaces.ts", "dist": "npm run generate-interfaces &&

Node projects are not working after changing the node version

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

How to watch and reload ts-node when TypeScript files change

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

Nodemon and PM2 on VPS

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

Why does the node inspector not start when I am using nodemon and ts-node?

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