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

v0.0.1

Published

Yeoman generator for CanJS

Downloads

17

Readme

CanJS Generator ScreenShot

Maintainer: Scott Markley

Based on Generator-Angular

Usage

First make a new directory, and cd into it:

mkdir my-new-project && cd $_

Then install generator-can and generator-karma:

npm install generator-can generator-karma

Run yo can, optionally passing an app name:

yo can [app-name]

Finally, install npm and bower dependencies:

npm install && bower install --dev

Generators

Available generators:

App

Sets up a new CanJS app, generating all the boilerplate you need to get started. The app generator also optionally installs Twitter Bootstrap as well as testing suite Qunit.

Example:

yo can

Route

Generates a controller and view, and configures a route in app/scripts/app.js connecting them.

Controller

Generates a controller in app/scripts/controllers.

Example:

yo can:controller user

Produces app/scripts/controllers/user.js:

can.module('myMod').controller('UserCtrl', function ($scope) {
  // ...
});

View

Generates an HTML view file in app/views.

Example:

yo can:view user

Produces app/views/user.html:

<p>This is the user view</p>

Options

There are options for each of the methods for registering services. For more on using these services, see the CanJs AMD documentation.

Options

In general, these options can be applied to any generator, though they only affect generators that produce scripts.

CoffeeScript

For generators that output scripts, the --coffee option will output CoffeeScript instead of JavaScript.

For example:

yo can:controller user --coffee

Produces app/scripts/controller/user.coffee:

can.module('myMod')
  .controller 'UserCtrl', ($scope) ->

A project can mix CoffeScript and JavaScript files.

Bower Components

The following packages are always installed by the app generator:

  • Can
  • can-mocks
  • can-scenario

The following additional modules are available as components on bower, and installable via bower install:

  • can-cookies
  • can-loader
  • can-resource
  • can-sanitize

All of these can be updated with bower update as new versions of CanJS are released.

Configuration

Yeoman generated projects can be further tweaked according to your needs by modifying project files appropriately.

Output

You can change the app directory by adding a appPath property to component.json. For instance, if you wanted to easily integrate with Express.js, you could add the following:

{
  "name": "yo-test",
  "version": "0.0.0",
  ...
  "appPath": "public"
}

This will cause Yeoman-generated client-side files to be placed in public.

Testing

For tests to work properly, karma needs the can-mocks bower package. This script is included in the component.json in the devDependencies section, which will be available very soon, probably with the next minor release of bower.

While bower devDependencies are not yet implemented, you can fix it by running:

bower install can-mocks

By running grunt test you should now be able to run your unit tests with karma.

Contribute

See the contributing docs

When submitting an issue, please follow the guidelines. Especially important is to make sure Yeoman is up-to-date, and providing the command or commands that cause the issue.

When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.

When submitting a new feature, add tests that cover the feature.

License

BSD license

##Grunt Debugging

node --debug-brk $(which grunt) task
Use node-inspector &