S.H.E.V.K.Y. logo S.H.E.V.K.Y.

Quick Start

S.H.E.V.K.Y. is very easy to install and use. Just follow the steps below to set up a demo blog and generate the base structure for your project.

npm init -y
npm install --save-dev shevky

The commands above install everything you need. For a sample project, run:

npx shevy --init

That is enough to bootstrap the project.

npx shevky --dev

This command prepares the project and serves it locally at http://localhost:3000. If you make changes to the code, run:

npx shevky --build

If you used --init, the required scripts are added to package.json automatically. In other words, the following commands will be ready to use:

npm run dev
npm run build