Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

node mon in loopback

install nodemon: npm i --save-dev nodemon
open package.json in section scripts add new line: "dev" : "nodemon server/server.js --watch common --watch server"
run your server with command: npm run dev

 in package.josn file add this one
"nodemonConfig": {
  "verbose": true,
  "watch": [ "src/" ],
  "ignore": [ "dist/*" ],
  "ext": "ts",
  "exec": "npm start"
 }
Comment

PREVIOUS NEXT
Code Example
Javascript :: array traversal backward 
Javascript :: ajaxcall 
Javascript :: change styles when element enters viewport 
Javascript :: does json only support ascii 
Javascript :: reactjs download file axios 
Javascript :: url.parse deprecated 
Javascript :: change inner html jquery 
Javascript :: how to send an embed message discord.js 
Javascript :: es6 foreach 
Javascript :: Concatenating variables and strings in React 
Javascript :: js reverse str case 
Javascript :: javascript stringify an object 
Javascript :: node colors log 
Javascript :: jest mongoose multiple connections 
Javascript :: get current url last part angular 
Javascript :: easy import reactjs 
Javascript :: Sort numbers from an array in javascript 
Javascript :: how to replace commas with nothing in javascript 
Javascript :: express post body 
Javascript :: javascript upload json 
Javascript :: rectbutton disable 
Javascript :: typeerror object(...) is not a function react useParams 
Javascript :: styled of styled component not working in nextjs 
Javascript :: js insert string at position 
Javascript :: protractor element.all for eahc 
Javascript :: how do i get month and date of javascript in 2 digit format 
Javascript :: prime numbers javascript 
Javascript :: corresponding text to key code js 
Javascript :: how to play music in js 
Javascript :: how to make a bot react to own message js 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =