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

meteor-private-package

v0.0.10

Published

CLI tool for linking and copying private Meteor smart packages using Meteorite.

Downloads

27

Readme

Meteor Private Smart Package Helper

This CLI tool for Meteor/Meteorite helps when working with a set of private smart-packages that you wish to deploy to a cloud service (such as Heroku) but you do not want to open-source the packages and host them on Atmosphere.

It works by allowing you to reference your local packages as symbolic links during development. Then when it comes time to deploy, copy all of your private packages locally to the project, getting you ready to push the complete set of files to Heroku.

Install

npm install -g meteor-private-package

This will give you access to the p-ref command from the terminal.

Usage

Start by creating adding a private element to your Meteorite's smart.json. This provides the file references to your local smart packages that are private:

{
  "meteor": {
    "git": "https://github.com/meteor/meteor.git",
    "branch": "master"
  },
  "packages": { },
  "private": {
    "base": "../../packages",
    "packages": {
      "core-users": "core-users"
    }
  }
}

The base attribute is optional. You can either specify the full working path in each private package, or you can set a common path to the directory containing all your packages.

To switch Meteorite to use these reference as symbolic links:

$ p-ref link

This will update the smart.json file. Then when it comes time to deploy, switch to a new branch and copy in the packages (using p-ref copy), then push to your favorite cloud service:

$ git checkout -b 'deploy'
$ p-ref copy

$ git add .
$ git commit -m 'Ready to deploy!'
$ git push heroku deploy:master

This will make a copy of the packages to a hidden folder (.packages.copy) and update the smart.json file with references these local copies, not the source location of your packages.

After deploying, switch back to your development branch, and your back in business.

Commands

Set up the Meteorite smart.json file with file references declared within your private/packages element (see above):

$ p-ref link

Copy referenced packages in locally to your project (see the .packages.copy folder):

$ p-ref copy

Removes copied references, (deleting the .packages.copy folder):

$ p-ref reset