JavaScript Advanced Training Course
Duration: ~3 days (20 hours)
Prerequisites: a beginner knowledge and experience of JavaScript language
- Online slides (English/French)
- https://codesandbox.io/s/github/worldline/JS-Training
- Connect a Github account and click on "Fork" button to get your own workspace for the exercises
- Install latest version of Node.js and an IDE for JavaScript (recommended: Visual Studio Code)
- Install Node dependencies (
npm installat the project root folder) - Install the testing library globally for easier access to jest through CLI:
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.