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 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-marionette-coffee

v0.0.322

Published

Yeoman generator

Downloads

25

Readme

generator-marionette-coffee Build Status

Yeoman generator for marrionette app written in coffescript

  • Starting point for new marionette project

  • includes hello world module example

  • using boilerplate express server

Whats included
  • Marionette
  • Coffeescript
  • AMD configuration using Requirejs
  • jQuery Templating
  • Twitter Bootstrap (optional)
  • Mocha unit tests with html testrunner as well as grunt task that will run them headless using phantomjs
  • Organized using module pattern
    • for more information about the module pattern with marionette, I highly recommend David Sulac's book on Marionette.js

To Install

This generator depends on phantomJS, mongoDb, yeoman, bower and grunt

Install phantomJS

$ brew install phantomjs

Install mongoDb

$ brew install mongodb

Install mocha-phantomjs:

$ npm install -g mocha-phantomjs

Install Yeoman, Bower and Grunt: $ npm install -g yo grunt-cli bower Install this generator

$ npm install -g generator-marionette-coffee

Usage

scaffold a new app:

$ mkdir your-app-name && cd your-app-name
$ yo marionette-coffee

optionally if you wish to leave out the hello world example you can run with --empty option

$ mkdir your-app-name && cd your-app-name
$ yo marionette-coffee --empty

Directory Structure

  • ____app/

  • index.html (Generated from template.html)

  • r.js optimizer

  • template.html generates html template for index files in app/ and dist/ for more info see targetHtml

  • ____assets/

    • ____coffee/ all coffeescript in folder will be compiled to js/ folder

      • ____app.coffee0

        • ____apps/
          • ____sub_app/ for sub-application folders

            • ____sub_app.coffee mediator for sub_application
      • ____build.js build configuration for r.js

      • ____entities/ for entity files

      • ____require_main.coffee main configuration file

    • ____css/

  • server/

    • ____app.js express server
  • ____test/

    • ____coffee/ coffeescript for test specs

    • ____spec/ where the specs written in coffeescript are compiled to

    • ____SpecRunner.coffee Requirejs configuration for tests

    • ____TestRunner.html

Grunt Tasks

$ grunt

Default grunt task will

  • copy template files in coffee to js folder
  • compile coffeescript
  • create index file for app folder
  • start background express server
  • start background connect server (for testrunner)
  • run headless mocha tests
  • open testrunner & app page in browser
  • watch your files for any changes and reload if there are any
$ grunt build

Default grunt task will

  • copy template files in coffee to js folder
  • compile coffeescript
  • create index file for app folder
  • start background express server
  • start background connect server (for testrunner)
  • run headless mocha tests
  • create single optimized file for all js
  • open optimized app in browser
Still In development
  • SubGenerators
  • application module
  • entities

License

MIT

Another great marionette generator worth checking out