Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install nodemon typescritp

npm i -D typescript ts-node nodemon @types/node
Comment

nodemon typescript

// nodemon.json
{
  "watch": ["src"],
  "ext": "ts",
  "exec": "ts-node ./src/app.ts"
}
// package.json
{
  "start" :"rm -rf dist/ && tsc --project . && node dist/app.js",
  "dev": "nodemon ."
}
Comment

PREVIOUS NEXT
Code Example
Shell :: get dir name bash 
Shell :: how to save windows spotlight images 
Shell :: tesseract installation in Arch linux 
Shell :: timezone brasil postgresql 
Shell :: git rename branch 
Shell :: how to delete folder from remote git 
Shell :: install classnames 
Shell :: install ruby and rails on mac 
Shell :: wsl default user 
Shell :: how to change permissions for the whole folder in ubuntu 
Shell :: git rename remote branch 
Shell :: remove mariadb 
Shell :: get database url heroku 
Shell :: anydesk linux install download 
Shell :: How to check if a string is null or empty in PowerShell? 
Shell :: install letsencrypt ubuntu 20.04 nginx 
Shell :: git see all tracked files 
Shell :: git delete last commit local and remote 
Shell :: zsh command not found: flutterfire 
Shell :: how to download a repository as zip 
Shell :: install wine linux 
Shell :: how to restart docker linux 
Shell :: git rebase continue 
Shell :: how to remove windows service 
Shell :: change commit date linux 
Shell :: ubuntu install webstorm 
Shell :: how to kill port in linux 
Shell :: bash: /proc/sys/vm/drop_caches: Permission denied 
Shell :: php install apcu 
Shell :: ffmpeg rotate video 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =