Core is a static HTML site generator (fork it and start a project).
Try the demo: https://apps.colinr.com/core/
- Critical CSS loading (100/100 on Google PageSpeed)
- HTML template generation via Nunjucks
- ES6 module bundling via Babel and webpack
- Supports Internet Explorer 8 (yikes)
Install nvm (Node Version Manager) https://github.com/nvm-sh/nvm#installation-and-update
Install the latest Node.js 12 LTS release using nvm:
nvm install
Install dependencies automatically by running:
npm ci
All files for deployment copied to /dist/
Output a build.
npm run build
Output a development build, proxied via BrowserSync:
npm run dev
Run quality checks on your code:
npm test