Week | Due date | Topic | Assignment |
---|---|---|---|
4 | May 2nd | Wireframes | Peer-graded assignment, part 1 |
6 | May 16th | HTML Markup | Peer-graded assignment, part 2 |
8 | May 30th | Appearance CSS | Peer-graded assignment, part 3 |
10 | Jun 13th | Layout CSS | Peer-graded assignment, part 4 |
10 | Jun 27th | Final version | Graded assignment |
All commands should be run from the project root.
To install the development tools, run:
yarn install
To view the website in a browser, run:
yarn start
If your browser doesn't open automatically, start your browser and visit http://localhost:4040 or http://127.0.0.1:4040.
Check CSS, HTML, and JavaScript:
yarn run lint
Or check them individually:
yarn run lint:css
yarn run lint:html
yarn run lint:js
Add :fix
to any of the above commands to automatically fix some style issues. Example:
yarn run lint:css:fix