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-em

v0.2.5

Published

A command line tool for scaffolding Meteor applications.

Readme

em

A command line scaffolding tool for Meteor applications. It automatically creates project structure, files and boilerplate code. The project structure mimics that of the EventedMind publishing platform.

Installation

Install the em command line tool globally so you can use it from any project directory.

$ npm install -g meteor-em

Pre-Reqs

You'll want to have Iron Router installed. Also, this command line tool just handles scaffolding for now. mrt and meteor are different command line tools. Hopefully, sometime in the near future we can enhance the meteor command line tool to be pluggable!

Usage

Just type em from the command line and you'll see the various top level commands. Then type em generate or em g to see a list of generators.

You can initialize your project structure like this:

$ em init

A config file will be generated in your project — .em/config.json, and you will be able to specify what types of files will be created for you when you generate a view resource. You can also specify alternative file extensions, e.g. .jade, .sass, and .coffee:

{
  "view": {
    "html": {
      "create": true,
      "extension": ".html"
    },
    "css": {
      "create": true,
      "extension": ".css"
    },
    "js": {
      "create": true,
      "extension": ".js"
    }
  }
}

Initializing with options

When running em init you can also pass in options to save some time. For example:

$ em init --ir --css=false --js=coffee

This will install Iron Router, set css file creation to false (css files will not be created when generating a new view), and set your preferred js file extensions to .coffee.

Note: --css=less or --css=sass will change css file extensions to .less and .scss respectively.

Once your project is initialized and your config.json file is set up, you can begin generating various resources. Here are a few examples:

$ em g:scaffold todos
$ em g:view todos/todo_item
$ em g:controller webhooks/stripe --where "server"
$ em g:route todos/todo_show

Contributing

This is an early alpha project and any thoughts and contributions are welcome.

Tests

To run tests

npm test

License

MIT