Skip to content

Instantly share code, notes, and snippets.

@carlos-algms
Created July 22, 2020 08:00
Show Gist options
  • Save carlos-algms/8684c4de219b953d68da9285662b56d2 to your computer and use it in GitHub Desktop.
Save carlos-algms/8684c4de219b953d68da9285662b56d2 to your computer and use it in GitHub Desktop.
Node debug and inspect aliases
alias ts-node-brk='node --inspect-brk=7001 -r ts-node/register '
alias ts-nodemon='nodemon --exec "node -r ts-node/register"'
alias ts-nodemon-brk='nodemon --exec "node --inspect-brk=7000 -r ts-node/register"'
alias jest-inspect='node --inspect node_modules/.bin/jest --runInBand'
alias bnode='babel-node --extensions ".ts" --presets @babel/preset-typescript --plugins @babel/plugin-transform-modules-commonjs '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment