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

ember-gen

v0.1.0

Published

Ember Generator Applications -----------

Readme

Ember Gen

Features

  • prescribed file organization for sanity
  • scaffolding for a smaller learning curve
  • precompilation template for better performance
  • application of a single file to a better experience
  • generators for faster application development
  • commonjs (node) style modules for js community <3 and isolated testing
  • easily build semantic forms in ember and simple validators

Dependence

To install the ember-gen is required

NodeJs >= 0.8
npm

Installation

npm install -g ember-gen

Quickstart

ember new demo-app -t bootstrap
cd demo-app
ember generate -s contact title:string email:string age:number
ember build
open demo-app/index.html
# visit #/contacts

Usage

  Usage: ember [command] [options]

  Command-Specific Help

    ember [command] --help

  Commands:

    new [options]      creates a new ember application [dir]
    build|b [options]        compiles templates and builds the app
    generate|g [options]     generates application files
    precompile|p [options]   precompile templates from src dir to target dir

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

| options | object name | file | | --------|-------------|------| | --model, -m post | Post | models/post.js | | --view, -v post | PostView | views/post_view | | --controller, -c post/comments | PostCommentsController | controllers/post/comments.js | | --template, -t post/comments | n/a | templates/post/comments.hbs | |--helper, -h truncate | | helpers/truncate.js| | --route, -r post_comment | PostCommentRoute | routes/post_comment.js | | --mixin, -m postable | Postable | mixins/postable.js | | -mvcrt posts | Post PostsView PostsController PostsRoute | models/post.js views/posts_view controllers/posts_controller.js routes/post_route.js templates/posts.hbs| | --scaffold, -s post | Post PostsView PostsController PostsRoute | models/post.js views/posts_view controllers/posts_controller.js routes/post_route.js templates/posts.hbs|

Notes:

  • Models will always be singular.

Build

For any change in the application files should run the following command to compiles templates and builds the app

ember build 

You can also use an observer to compile the templates and build the app every change made in the application files

ember build -w

Version Information

Current Version: 0.1.0

Package versions:

  • ember 1.0.0-RC.2
  • ember-data rev 12
  • handlebars 1.0.0-rc.3
  • jQuery 1.9.1
  • Underscore 1.4.4

License and Copyright

MIT Style License

Copyright © 2013 Alex Ferreira