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

generator-vulcan

v0.0.1

Published

A Meteorjs scaffolding tool for simple CRUD and a 'meteor out of the box' app.

Readme

#Vulcan Scaffolding

Yeoman based MeteorJS scaffolding tool.

#Getting Started

git clone https://github.com/qtheninja/vulcanscaffold.git

in the directory

npm install

npm link

yo vulcan

##Yo Vulcan Will setup file structure as .meteor .finished-upgraders .gitignore .id packages platforms release versions client compatibility views includes accessDenied.html footer.html nav.html notFound.html layouts masterLayout.html static about.html home.html landingPage.html login.html privacyPolicy.html register.html tos.html privacyPolicy.html main.html main.js lib collections posts.js controllers PostsControllers.js methods.js routes.js public fonts img js server accounts.js methods.js publish.js

###Packages in the original app The idea behind the generator was to make a simple out of the box concept. The following are packages that will be present in out of the box: accounts-password aldeed:autoform aldeed:collection2 cooperm:side-comments fortawesome:fontawesome iron:router twbs:bootstrap useraccounts:bootstrap useraccounts:core dsyko:hopscotch aldeed:delete-button accounts-google service-configuration standard-minifiers meteor-base mobile-experience mongo blaze-html-templates session jquery tracker logging reload random ejson spacebars check yogiben:admin dburles:collection-helpers alanning:roles fortawesome:fontawesome

yo vulcan:forge

The forge subgenerator is designed to createa CRUD setup using Aldeed's simple schema and autoforms combined with iron router. You'll have to agree to overwrite the publish.js and routes.js as both contain a string hook to have information written inside of it.

You'll be prompted for a specific name of your schema. Write the schema as you would into your database. So for example wanting a Cats schema.

Cat. The generator alters the Cat to cat at a few locations and also appends an S to it. So when using yo vulcan:forge make sure to use the right information.

You will almost immediatly have to update

  1. Collections
  2. Routes
  3. createObject.html
  4. editObject.html
  5. listObject.html

As these are cookie cutter statements.

yo vulcan:forge

What is the name of your schema? Car

Generators the following

lib routes.js collections Cars.js controllers carsController.js client views cars create createCar.html createCar.css createCar.js edit editCar.html editCar.js listCar.js listCar.html

The URL structure can be found in Routes but it follows this.

/cars Lists all of the cars using a simple table. /cars/create a insert form /cars/:_id/edit Edit ability on a specific item

##Notes: A nice article about yeoman writing generators http://paulfreeman.me.uk/development/process/how-i-came-to-love-yeoman-by-writing-my-own-generators