Demo for "Building a JavaScript Development Environment" on Pluralsight
I build this development environment from scratch in "Building a JavaScript Development Environment" on Pluralsight
- Run
npm install
- If you forget to do this, you'll see this:babel-node: command not found
. - Make sure you're running the latest version of Node. Or, use Node 6.9.1 if you're having issues on Windows. Node 7 has issues on some Windows machines.
- Make sure files with names that begin with a dot (.babelrc, .editorconfig, .eslintrc) are copied to the project directory root. This is easy to overlook if you copy this repository manually.
- Don't run the project from a symbolic link. It will cause issues with file watches.
- Having linting issues? Delete any .eslintrc that you're storing in your user directory. Also, disable any ESLint plugin / custom rules that you've enabled within your editor. These will conflict with the ESLint rules defined in the course.
- Nothing above work? Delete your node_modules folder and re-run npm install.