First install NodeJs.
Then install dependencies.
npm install
Then init the app
npm run init
Build, watch aand open server
npm start
Build, watch and open server with sync between browers
npm run dev
Watch and open server on another port
npm start -- --port 3010
Generate pages or partials from templates
npm run generate
Generate a page from templates
npm run generate:page
Generate a partial from templates
npm run generate:partial
Build the website with minified CSS / HTML and scripts to the /dist folder.
npm run build
Deploy the /dist content on the server.
npm run deploy