Thursday, September 29, 2016

Tutorial 1 - Getting start developing data driven application with NoolJs


    With the Nooljs, the new full stack framework, complex real-time data driven application can be built easily. Unlike other full stack frameworks such as  mean-js and meteor-js, which support only the mongo-db database , it  is designed to support  all kind of databases.

It is not a new framework. It is developed using well known frameworks such as nodejs, angularjs, express-js, socket-io, and other popular npm modules.

 Full Nooljs documents can be found here.

The npm module can be downloaded from here.

The source code is available here.


In this first tutorial, we will show how to install and run the simple Nooljs application.

  1. Install nooljs with npm
    npm install nooljs -g  
  2. Create new nooljs project by running command
    nooljs   
    It will ask project name. Enter the project name( example testprj). It will create new folder for the project and sample application.
  3. Go the new project folder
    cd testproj 
  4. Update the npm dependency packages
    npm  update 
  5. Run the application
    node app.js

No comments:

Post a Comment

Tutorial 2 -  Introduction to working with Database in Nooljs:  Getting data from SQL Server. Nooljs is great framework to develop data d...