npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

nooljs

v0.1.0

Published

Full stack JavaScript framework created top of Nodejs, express, and Socket-io, and Angularjs

Downloads

40

Readme

nooljs ( Beta)

Introduction

Full stack JavaScript framework built using the famous open sources libraries.. Nodejs, Angularjs, expressjs, npm, socket-io.

  • Easy to build complex data driven JavaScript applications with minimum coding.
  • Support multiple data connections suck as ms-sql, MySQL, PostgreSQL, and Mondodb.
  • Real time framework build top of Express-js and socket-io
  • The client side is powered by the Angularjs. The layout can be built using the Angularjs tags and elements.
  • Modularized layout to simplify the comlex web pages.
  • Can be mixed both Express-js and socket-io

Quick Start

  1. Install nooljs with npm

$ npm install nooljs -g

  1. 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.
  2. Go the new project folder

$ cd testproj

  1. Update the npm dependency packages

npm update

  1. Run the application

node app.js

Tutorials & Blogs

Tutorials & Blogs are available at https://nooljs.blogspot.ca/

Source Code

Source codes can be downloaded from https://github.com/nooljs/nooljs

API Document

For the full document please visit http://nooljs.github.io/nooljs/

Folder Structure

* config -- Configuration folder
* layout - Contains all the layout files
* public -- Public files ( js, image)
* server -- All the server side JavaScript files 
* servermethod -- Put all the server methods here 

Layout

The Layout is heart of the nooljs project. Each page/module of the application can be defined as layout. It should be keep inside the layout folder.

 <nl-template id="store-edit-template" nl-permission="store-edit" nl-parent="main-content" >
 </nl-template>
<nl-server-script>
</nl-server-script>
<nl-client-script>

The layout file contains three parts :

  • nl-template - Html template for the module
  • nl-server-script - Sever side javascript code for this module
  • nl-client-script - Client side javascript code for this module

nl-template

nl-template contains all the html for the given module. It can be easily injected into html page or layout file.

The sample layout is shown below:

<nl-template id="store-edit-template" nl-permission="store-edit" nl-parent="main-content" >
<button class="button button-block button-positive"  id="item-edit-back"
	  nl-click-redirect="{'url':'store-template'}" >    Back
</button>
<h1 >{{store.StoreName}}  Edit</h1>
 <ion-content class="has-header  has-footer">
<ion-list nl-server-data="getStore"  nl-post-client="assignStoreName">	
 <ion-item>
   <label class="item-input">
    <span class="input-label">Store name</span>
    <input type="text" ng-model="store.StoreName" />
  </label>
   <ion-item>
   <label class="item-input  item-select">
    <span class="input-label">Country</span><div nl-db-data="exec  dbo.usp_GetCountries"   nl-db-model="countries"  nl-cahche="sessionStorage">
      <select ng-model="store.Country"   >
						 <option  ng-repeat="country in countries" value="{{country.CountryCode}}"  ng-selected="country.CountryCode==store.Country">{{country.CountryName}}</option>
       </select>
	   </div>
  </label>
   </ion-item> 
</ion-list>
 </ion-content>
</nl-template>
<nl-server-script>
{
  getStore:
  {
	model:"store",
    db:
	{
		query:"exec Admin_GetStoreInfo {{StoreId}}",
		resultType:"single"
	}
  }
}
</nl-server-script>
<nl-client-script>
{
  assignStoreName:function ($scope)
  {
	console.log(" enter assignDefaultStore  function ");
	$scope.$root.storeName = $scope.store.StoreName;
  }
  }
</nl-client-script>