The nijor-cli
is a CLI tool which allows to work in Nijor.
The nijor create command creates a new folder and generates some boilerplate code. To create a new Nijor project, type the following commands. (Write your project's name instead of {Appname} )
nijor create {AppName}
cd {AppName}
The nijor serve command runs a development server for the Nijor Project.
cd {AppName}
nijor serve
The nijor compile
command compiles the all the *.nijor
files to browser readable JS and CSS code.
The nijor build
command is very similar to thenijor compile
command. The only differnce between the 2 is that nijor build
minifies the JS code.