To get started install Parcel:
npm install parcelThen point it to your index.html:
./node_modules/.bin/parcel index.htmlAnd go to localhost:1234 in your browser.
For some reason I have notes on doing this:
npm install parcel-bundler --save-dev
npm run devAnd for a final build:
npm run buildYou can also tell Parcel to watch a file, which just builds stuff but doesn't start the webserver I think:
./node_modules/.bin/parcel watch index.html