Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.48 KB

README.md

File metadata and controls

45 lines (27 loc) · 1.48 KB

Udemy_JavaScript

Udemy course on javascript and software engineering basic prep

Resource:

Issues:

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"
},