This guide will help you create and run your first Nijor project.
In order to use Nijor, make sure you have Bun installed (Node will also work).
Install Nijor globally :
bun add nijor -g
nijor create my-app
cd my-app
A Nijor project is created with many files and folders.
nijor dev
The dev server will start on port 3000 with live_reload enabled. You can change this behavior in the nijor.config.js.
When you're ready to deploy your app, you can create an optimized production build:
nijor build
This will generate a production-ready version of your app with optimized assets.