Your next great prototype description
# Install Node & NPM with [NVM](https://github.com/nvm-sh/nvm)
nvm install
# Install project dependencies
npm install
# Start a local dev server
npm start
# Check for JS/SCSS style violations prior to commit
npm run lint
# Fix the fixable linter violations
npm run lint:fix
# Format code with Prettier
npm run format
# Build for production
npm run build
# Serve locally using `serve`
npx serve dist
The output of npm run build
is a static site. You can drop the resulting dist
directory on any web server.
An excellent choice is Netlify.
You can deploy your work to Netlify with their CLI tool.
npm install netlify-cli -g
netlify init
netlify deploy
Copyright © 2020 Upstatement, LLC
A Puppy 🐶 powered project