Nijor-CLI

Intorduction

The nijor-cli is a CLI tool which allows to work in Nijor.

nijor create

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}
    

nijor serve

The nijor serve command runs a development server for the Nijor Project.

        cd {AppName}
    
nijor serve

nijor compile

The nijor compile command compiles the all the *.nijor files to browser readable JS and CSS code. nijor compile To watch for changes, type nijor compile -w

nijor build

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. nijor build