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

space-kitty

v0.1.4

Published

Opinionated Meteor command line utility

Downloads

22

Readme

Space Kitty

MIT License

For Meteor 1.2+ and Node v5.4.0+.

Full documentation available on the website.

An opinionated command line utility for quickly creating Meteor projects.

npm install -g space-kitty

Getting Started

mpm install -g space-kitty
kitty meow
kitty create MyProject
cd MyProject
meteor

Opinions

  • CamelCase file names and class names (except for migrations, which are timestamps and dashed)
  • React is used for views
  • Namespaced components are the norm
  • Automatic BEM classnames
  • SCSS
  • Materialize
  • Flow Router for routing
  • percolate:migrations for data migrations

Opinion Reasoning

  • There is no reason to pick CamelCase over dash delimited. However, much of the community uses CamelCase.
  • Migrations are dashed because of the timestamp that proceeds them.
  • React is a very thin and flexible view layer.
  • Blaze is being deprecated by MDG.
  • BEM is used to keep in the spirit of React styles.
  • BEM keeps a shallow hierarchy, making CSS faster to render.
  • SCSS is used due to the shortcomings of inline React styles, namely psuedo-selectors and media queries are not supported.
  • Materialize is included by default, feel free to swap this out with no repercussions.
  • Flow Router is preferred over Iron Router within the Meteor community.
  • Percolate migrations were chosen due to their popularity and simplicity.

Commands

meow

kitty meow

Make sure you have the CLI installed correctly, should just print Meow to the stdout.

create

kitty create ProjectName

This command will copy the project scaffolding into ./ProjectName.

make:collection

kitty make:collection [Namespace] CollectionName [--self-publishes] [--with-schema] [--local] [--class]

This command will create a Mongo Collection:

lib
└──collections
    └──[Namespace]
        └── CollectionName.js

make:command

kitty make:command [Namespace] CommandName [--server|client|(both)]

This command will create a command (defaults to both a client and server):

lib
└──commands
    └──[Namespace]
        └── CommandName.js

You can then call your command using dispatch(CommandName, arg1, arg2) or dispatchAsync(CommandName, arg1, arg2, callback);.

make:meteor-method

kitty make:meteor-method [Namespace] MethodName

This command will create a new file containing a single Meteor method.

server
└──methods
    └──[Namespace]
        └── MethodName.js

The side-effect of using this command is that you will have many different files with one Meteor method in each of them, which is different than how most developers are used to writing Meteor methods.

make:migration

kitty make:migration [Namespace] MigrationName

This command will create a Migration using percolate:migrations:

server
└──migrations
    └──[Namespace]
        └── timestamp-migration-name.js

Migrations are automatically versioned by the timestamp of when they were created.

The migration package and project scaffolding will not be created until you create your first migration. The .meteor/packages files will have percolate:migrations added to it if does not already exist. server/RunMigrations.js will automatically be created if it does not already exist.

make:view

kitty make:view [Namespace] ViewName

This command will create a module consisting of:

client
└──components
    └──[Namespace]
        └── ViewName
            ├── ViewName.jsx
            └── _ViewName.scss

It will also add an import statement to client/styles/main.scss to import your new .scss file.

remind-me

Space Kitty is there for you by having reminders on how to do common stuff:

remind-me:meteor-call
remind-me:react-loops