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

ngdeploy

v0.4.6

Published

Deploying SPA's and Static pages into the cloud.

Readme

ngDeploy CLI

PRs Welcome TravisCI Status bitHound Overall Score https://david-dm.org/ngdeployio/ngdeploy

Grunt Bower Github


Installation

Install this globally and you'll have access to the ngdeploy command anywhere on your system.

[sudo] npm install -g ngdeploy

Usage

$ ngdeploy --help
1.    $ ngdeploy login -g
2.    $ ngdeploy create <appName>
3.    $ ngdeploy init <appName> <distDir>
4.    $ ngdeploy push
Example: 
1.    $ ngdeploy login -g
2.    $ ngdeploy create helloApp
3.    $ ngdeploy init helloApp ./dist
4.    $ ngdeploy push

Getting Started

1. Login

Register or log into ngDeploy. Which will create an ngDeploy account and initiate the hosting process. To authenticate the terminal copy and paste the account token from the profile page.

Format

ngdeploy login -g

Example

$ ngdeploy login -g 
$ prompt: Open this link in a browser to register: https://ngdeploy.com/#!/?redirectTo=private.accounts
$ prompt: Account Token to use:  **************

2. Create

Creating your first application is as easy as:

Format

ngdeploy create <Application Name>

Example

$ ngdeploy create HelloWorld

Please note application names must be publicly unique.

3. Initialize

Now we can initialize the .ngdeploy configuration file using init. .ngdeploy also holds the Account Token , Distribution directory, Application name, and in the future additional configuration information.

Format

ngdeploy init <Application Name> <Distribution directory>

Example

ngdeploy init HelloWorld .  

4. Push

Push synchronizes the Distribution directory with our cloud. It'll compare the MD5 hash of the files with what's currently stored in the cloud and only upload files that have changed.

Format

ngdeploy push

Example

ngdeploy push

Commands

The command ngdeploy --help lists the available commands and ngdeploy <command> --help displays additional information about a command.

For project-specific commands, you must be inside a project directory with an active .ngdeploy file.

Below is a brief list of the available commands and their function:

Commands

Command | Description ------- | ----------- login | Authenticate the terminal with ngDeploy logout | Destroy the authentication information https | Commands for managing the HTTPs functionality domain | For managing the domains of an app list | Print a list of all of your ngDeploy apps help | Display help information about the CLI or specific commands

Custom Domain

Format

$ ngdeploy domain add --domain <domain> --appId <appId> /

Example

$ ngdeploy domain add --domain ngdeploy.com --appId 10

SSL for HTTPS

Format

$ ngdeploy ssl add -k <path to key>

Example

$ ngdeploy ssl add -k .private_key.ssl

Environment

Environmental variables can be injected into a SPA using the setEnv command. Upon a user request this embeds a javascript file with the given environmental variables.

Format

ngdeploy setEnv <Application Id> <Stage> <key:val>

Example

ngdeploy setEnv 1 production key:val