Quick Start - a Snowpack cheat sheet!
Install Snowpack
# using npm
npm install --save-dev snowpack
# using yarn
yarn add --dev snowpack
Common Commands
Here’s a short list of what you can do with Snowpack:
# Start your dev server, load your site locally
snowpack dev
# Build your site for production
snowpack build
# Build your site, but watch the file system and rebuild when files change.
# Great for local development with your own dev server (ex: Rails)
snowpack build --watch
# See more helpful info
snowpack --help