Quickstart
Requirements
-
Nodejs
Visit https://nodejs.org/ and download nodejs labelled as with LTS.
-
Editor
For efficient code writing, a recommended editor is Visual Studio Code (VSCode). To enhance productivity and readability specifically for Ulka code, the Ulka extension for VSCode offers code highlighting and formatting capabilities.
Creating new project
npm init ulka <project-name>
cd <project-name>
npm install
Above command will generate a basic template install all the dependencies.
Building static site
npx ulka
Above command builds all the files into output path specified in ulka-config.js
.
Development server
npx ulka -w
Above command build, create live development server and watch files.
Edit this page on github