Horje
nodemon script Code Example
install nodemon
# Install nodemon
npm install nodemon

# Install nodemon globally on your machine
npm install -g nodemon

# Install nodemon on your project as dev-dependency
npm install nodemon --save-dev
install nodemon
npm install nodemon --save-dev
nodemon
npm install -g nodemon
nodemon package.json start
{
  "name": "abc",
  "version": "0.0.1",
  "description": "my server",
  "scripts": {
    "start": "nodemon my_file.js"		// <= 
nodemon script
# Install nodemon
npm i nodemon
# Write a script like ...
"scripts": {
        "start":"nodemon index.js"
    }
# Start in your terminal with something like ...
nodemon ./server.js localhost 8000
or
npm run server
nodemon global instal npm
npm install -g nodemon




Shell

Related
npm install ubuntu 20.04 Code Example npm install ubuntu 20.04 Code Example
ubuntu install wine terminal Code Example ubuntu install wine terminal Code Example
fetch all tags git Code Example fetch all tags git Code Example
Fetch all braches in git Code Example Fetch all braches in git Code Example
visual studio code branch doesn't show Code Example visual studio code branch doesn't show Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9