Option #1 (Preferred): Install Node with brew.
brew install n
sudo n 12
Option #2: Install Node using the official resource installer.
Install project dependencies.
npm install
Runs the local build server with hot module reloading and eslint watcher.
npm run dev
Manually lint the files for any breaking changes.
npm run lint
Run all tests. This command will also automatically run during Husky's pre-commit checks.
npm run test
Build out the entire site as a static project.
npm run build
Clean out all Node packages.
npm run purge