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

mean-task

v0.0.4

Published

A MEAN task list ... demo application

Readme

mean-task

A MEAN task list!

Demo task list application built on MEAN stack.

There are two methods for deploying the application.

  1. Git Clone + Vagrant
  2. npm

Use one of the two deployment methods below, followed by the start section.

1. Vagrant Deployment

From Git Bash:

$ git clone https://github.com/studyingMole/mean-task.git

$ cd mean-task

$ vagrant up

Vagrant will provision the box at this point. It may take some time ...

$ vagrant ssh

$ cd /vagrant

$ npm install

If running the Vagrant box on a Windows host, run the install command with the --no-bin-links switch.

2. npm Deployment

Navigate to a folder where you want to deploy the application

$ npm install mean-task

$ cd node_modules/mean-task

Start the MEAN app

$ npm run start

The application should start listening on port 3000.

Point your favourite web browser to http://localhost:3000

Development Tools

There are a couple development tools included in the dependencies:

  • mocha
  • browserify
  • nodemon

To make use of node.js features in the angular files, the index.js file needs to be compiled if any changes are made to the angular files (in the /client folder).

Use npm to build the compiled index.js file:

$ npm run build

A set of mocha test are also included to test the "server" API. To run the tests, simply run:

$ npm run test

There's currently a bug when running test for the first time after bringing up a Vagrant box, npm will throw errors due to something in the "before all" hook. Just re-run the test command and it should work as expected then.

Lastly, the start command starts the app with the nodemon module which allows the server to be quickly reloaded. Simply type rs in the console while the web server is running to reload the web server.

Nodemon should automatically reload the server when it detects a file update in the directory, but this doesn't always work ...