Quickstart
This quick start is not intended for developers who are just getting into ulkajs. For step by step guide to create new ulka project, head to our tutorial!
Creating a new project
npx ulka create ulka-site ulkajs/ulka-starter-default -i npm
cd ulka-site
npm run develop # OR npx ulka develop
Above command will download the default starter from github, install all the dependencies and start the ulka development server.
Creating production build
npm run build # OR npx ulka build
This command builds all the files into build path specified in ulka-config.js
Serving production build
npm run serve # OR npx ulka serve
Installing ulka globally
You can install ulka globally but it is not recommended as ulka is not completely ready and new versions with betters features will be released in shortly. You would never want to miss those, would you ?. If yes 😠please go ahead and run the following command.
npm i -g ulka
Edit this page on github