Fork this repository for homework (2-6) The fork will create a repository on your http://github.com
Add a mentor to a collaboration.
Create your own branch for each homework.
- hw02
- hw03
- hw04
- hw05
- hw06
Each new branch for hw must be made from master.
Once you've done your homework on your branch, you need to make a pull request (PR). Then add a mentor for code review. Only after the mentor approves the PR, you can merge the branch with the homework in the master.
Read the mentor's comments carefully. Fix the comments and commit to the branch with the homework. Changes will be pushed to PR automatically after you commit the fixes to github After the fix, add the mentor to the code review again.
- When submitting homework, there is a link to PR
- JS code is clean and clear, Prettier is used for formatting
npm start
— start server in production modenpm run start:dev
— start the server in development modenpm run lint
— run a code check run with eslint, must run before each PR and fix all linter errorsnpm lint:fix
— the same linter check, but with automatic fixes for simple errors