A simple, fast and lightweight static site generator written in javascript.
-
Create new ulka site.
# with npm npm init ulka # with yarn yarn create ulka
Then chose the template and project name.
OR you can directly specify project name and template
# with npm npm init ulka my-blog -- --template default-blog # with yarn yarn create ulka my-blog --template default-blog
-
Navigate to project name and install dependencies.
cd my-blog # with npm npm install # with yarn yarn install
-
Build your project.
# with npx npx ulka # build the project npx ulka -w # build and watch # with yarn yarn ulka # build the project yarn ulka -w # build and watch
Visit ulka.js.org for documentation and tutorial.