Created
July 22, 2020 08:00
-
-
Save carlos-algms/8684c4de219b953d68da9285662b56d2 to your computer and use it in GitHub Desktop.
Node debug and inspect aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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