Udemy course on javascript and software engineering basic prep
-
Udemy Beginning JavaScript This course turns out to have bad quality and is not suggested to take.
Install eslint:
npm install eslint --save-dev
Install promander:
curl -s https://raw.githubusercontent.com/hackreactor/pomander-precourse/master/bin/install | bash
I get this error when debugging vscode:
Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json.
Solutions: microsoft/vscode-js-debug#1150
adding to settings.json (cmd
+ shift
+ p
and select Open User Settings):
get the path by which node
:
"debug.javascript.defaultRuntimeExecutable": {
"pwa-node": "/path/to/.nvm/versions/node/vX.X.X/bin/node"
},