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-log-marionette

v0.3.2

Published

Yeoman generator

Downloads

6

Readme

Yeoman generator

What it is

It will generate a base Marionette project with Browserify, specs and Gulp tasks. Also, it will generate all the base components of a Marionette project - such as ItemView's, Models, etc.

Installation

Please read Yeoman docs for Yeoman installation.

npm install -g generator-log-marionette

Bootstrap

yo log-marionette will generate a package.json with the specified dependencies , an .editorconfig, a .gitignore, a .jshintrc and will create the following directories and files: e criar as seguintes directorias e ficheiros:

  • tasks/
  • src/
    • images/

    • fonts/

    • styles/

    • scripts/

      • main.js - application bootstrap
      • app/
        • app.js - basic definition of Backbone.Marionette.Application;
        • radio.js - basic definition of Radio with a predefined global channel;
        • behaviors/
          • behaviors.js - placeholder for other Behavior;
        • collections/
        • models/
        • controllers/
        • routers/
        • apis/
        • views/
          • root-view.js - view used by app.js as a view placeholder
        • templates/
          • root.(hbs|dust) - root-view.js template
        • regions/
    • tests/

      • app/
        • collections/
        • models/
        • controllers/
        • routers/
        • apis/
        • views/

All package.json will be automatically installed

Generators

You can see a list of possible generators by typing: yo --help. In this case you will receive the following list - alongside other generators:

log-marionette
    behavior
    collection
    collectionview
    composite-template
    compositeview
    controller
    itemview
    layoutview
    model
    region
    router
    template

Bear in mind, composite-template IS NOT supposed to be used. It is only used internally by compositeview.

You can see each sub-generator and its options by typing: yo log-marionette:[generator] --help. E.g.: by typing yo log-marionette:compositeview --help it will return:

Usage:
  yo log-marionette:compositeview [options] <name>

Options:
  -h,   --help        # Print the generator's options and usage
        --skip-cache  # Do not remember prompt answers                               Default: false
        --all         # should also create its corresponding template and itemviews

Arguments:
  name    Type: String  Required: true

A few points on naming conventions; when generating a model or a collection, the input name will be the file name, e.g.: yo log-marionette:model my-name will generate a my-name.js file with the following code:

(function () {
    'use strict';

    var Backbone = require('backbone');

    var MyName = Backbone.Model.extend({});

    module.exports = MyName;
})();

In all other cases a suffix will be added to the name file and the generated object, e.g.: yo log-marionette:behavior my-name will generate a my-name-behavior.js file with the following contents:

(function () {
    'use strict';

    var Marionette = require('backbone.marionette');

    var MyNameBehavior = Marionette.Behavior.extend({
        defaults: {
            /* your defaults */
        },

        events: {
            /* your events */
        }
    });

    module.exports = MyNameBehavior;
})();

License

MIT