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

niece

v0.0.10

Published

Inline-Edited CMS in Node.js and Express.

Downloads

33

Readme

What's NIECE?

Features

  • Bootstrap theme
  • Written entirely in Javascript (Node.js).
  • User system with roles, permissions, and email verification.
  • Media upload system.
  • Extendable using npm modules with the prefix name of "niece_"
  • and more...

You can see it in action here: http://niece.box.biz/ in fact that site is the default site the module ships with.

Install

Assuming that you have installed node.js.

  1. Build your node app: npm init. Note: use "index.js" for your entry point, if ya want the rest of the scripts to work.
  2. Create your app file printf '%s\n' 'const Neice = require("niece");' 'new Neice();' > index.js
  3. Install nodemon and npm-add-script to help with development: npm install -g nodemon npm-add-script
  4. Add your dev script npmAddScript -k dev -v "nodemon index.js"
  5. Install NIECE npm install niece
  6. Run your app: npm run dev which will build the site and listen at port 4430. Your site will be http://localhost:4430/
  7. Go to http://localhost:4430/user/register and create your admin account.

That's it!

Few notes:

  • To restart just run rs
  • Type control+z to end the sever
  • Run kill -9 $(lsof -t -i:4430) to stop listening on port 4430

Install in a single script!

npm init -f
printf '%s\n' 'const Neice = require("niece");' 'new Neice();' > index.js
npm install -g nodemon npm-add-script
npmAddScript -k dev -v "nodemon index.js"
npm install niece
open -na "Firefox" --args --new-window "javascript:setTimeout(()=>window.location.href='http://localhost:4430', 4000)"
npm run dev
# done

Assuming you have git and node.js installed.

Git a base app git clone https://github.com/BOXNYC/NIECE.git Go to it's directory cd niece Install it via npm npm install Run it npm run dev

Install in a single script!

git clone https://github.com/BOXNYC/niece.git
cd niece
npm install
npm run dev
# done

Run on a webserver

Non-Secure http:// (port 80)

<VirtualHost 104.130.24.68:80>
  ServerName niece.box.biz
  # Set up the proxy both ways
  SSLProxyEngine On
  ProxyPass / http://localhost:4430/
  ProxyPassReverse / http://localhost:4430/
  ProxyPreserveHost On
</VirtualHost>

Secure https:// (port 443)

<VirtualHost 104.130.24.68:443>
  ServerName niece.box.biz
  # Set up the proxy both ways
  SSLProxyEngine On
  ProxyPass / http://localhost:4430/
  ProxyPassReverse / http://localhost:4430/
  ProxyPreserveHost On
  # Turn on SSL
  SSLEngine on
  SSLCertificateFile /etc/ssl/2/STAR_box_biz.crt
  SSLCertificateKeyFile /etc/ssl/2/box_biz.key
  SSLCertificateChainFile /etc/ssl/2/My_CA_Bundle.ca-bundle
</VirtualHost>