This is a collection of useful tools for any web development project. Can be used as checklist/steps.
- Setup your user account to install global npm packages without
sudo
- Yarn – package manager
- Prettier
yarn add prettier --dev --exact
- Config preset
- Prettier Help
- normalize.css
yarn add normalize.css
- In your root CSS/SASS file:
@import "~normalize.css";
- npm-check-updates
yarn global add npm-check-updates
- npx – execute npm package binaries
yarn global add npx
- DevHints – Cheatsheet Collection
- HTTP status codes as constants
yarn add http-status-codes