- HTML5
- SCSS
- JavaScript
- Parcel
- Node.js
git clone <project>
- Open the Project in VSCode
- Open the Terminal
npm install (or just npm i).
And wait until it downloads all the packages and finishes.
npm start to Open the Page
The command in the terminal will never finish.
The command should open your browser at http://localhost:8080/.
At this point, you should see the starting markup of the page.
If the page is empty, add some text to the <body> in the src/index.html file.
The text should appear in the browser.
NPM Commands:
npm installinstalls the project dependencies and runs postinstall.
This creates reference files for pixel-perfect and tests.
npm startruns the server required for development and tests.npm testruns the linter and tests.npm run lintruns the linter (code style check).npm run test:onlyruns pixel-perfect tests.npm run deploypublishes the page and test report to gh-pages.