JavaScript Advanced Training Course
- Online slides (English/French)
- https://codesandbox.io/s/github/worldline/JS-Training
- Click on "Fork" button to get your own workspace for the exercises
- Install latest verison of Node.js and an IDE for JavaScript (recommended: Visual Studio Code)
- Install Node dependencies (
npm installat the project root folder) and the testing library (npm i -g jest) - Manually run all the tests with
jestcommand, or one test in particular withjest exo01. Use--watchflag to automatically run the tests again whenever a source file has changed.