Lost in Webix Jet Demos

Hi, I try to make a small layout dinamically with webix jet, seems have very potential and easy to create a small CMS with webix.
I have download demos but first error I found is I can’t find codebase folder with admin.js and admin .css(for example downloading from GitHub - webix-hub/webix-adminapp-demo: Demo of Webix MVC app, http://webix.com/demos/admin-app/ )
without a full demo files, it’s difficult to learn how it works.
I have reading gitbook with Jet 1.0 and seems comprensible, but without demos working it’s difficult to try new options.
I’m lost beacuse in readme says… copy codebase folder…from where?
Do you have fulls complete demos files to learn about this great idea of Jet?

Thanks!!

Well, I found it.

First, of course, download Node from here Node.js and install it on your computer.

Goto http://webix.com/demos/admin-app/ and Click on “Clone or Download” button (usually green button) and Select “Download Zip”

Extract zip content to a folder (for example Documents folder and inside would create “webix-adminapp-demo-master” from zip content.

Open a CMD console in “webix-adminapp-demo-master” and write:

npm install

When Finish, write again:

npm start

Whit this, Node server will Start. Now you can see the demo on your browser with:

http://localhost:8080

From here you can test from “webix-adminapp-demo-master” folder on “sources” folder all the files to work.

If you want to compile finally your work, you can create a compressed files to port to your webserver or where you want.
For this: Open a CMD console in “webix-adminapp-demo-master” folder and write:

npm run build
With this, it will create a codebase folder with files inside it.

Copy the “codebase” folder and “index.html” and paste to your webserver.
You will see the same result but with compressed files on your new server.