Installing blazingly
Global
using yarn
yarn global add @blazingly/cli
or using npm
npm install -g @blazingly/cli
Local
You can also install it locally if you don't want to clutter your global package folder with dozens or hundreds of packages.
using yarn
yarn add @blazingly/cli -D
or using npm
npm install @blazingly/cli -D
Create a scripts section in your package.json, otherwise it's probably not gonna work
{
"scripts": {
"serve": "blazingly serve ./src",
"build": "blazingly build ./src",
"production-server": "blazingly prod-serve"
}
}