generator-thog

1.0.1 • Public • Published

Yeoman generator for AngularJS used in TexoIT - lets you quickly set up a project with sensible defaults and best practices. This generator was based on Yeoman's Angular Generator, and use John Papa's styleguide.

Usage

For step-by-step instructions on using Yeoman and this generator to build a TODO AngularJS application from scratch see this tutorial.

Install yo, grunt-cli, bower, generator-thog and generator-karma:

npm install -g grunt-cli bower yo generator-karma generator-thog

Make a new directory, and cd into it:

mkdir my-new-project && cd $_

Run yo thog, optionally passing an app name:

yo thog [app-name]

Run grunt for building and grunt serve for preview

Generators

Available generators:

App

Sets up a new AngularJS app, generating all the boilerplate you need to get started. The app generator also optionally installs Bootstrap and additional AngularJS modules, such as angular-resource (installed by default).

Example:

yo thog

Route

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

Example:

yo thog:route myroute

Produces app/myroute/myroute.controller.js:

Produces app/myroute/myroute.template.html:

Controller

Generates an AngularJS controller.

Example:

yo thog:controller user

Produces app/user/user.controller.js:

Directive

Generates an AngularJS directive.

Example:

yo thog:directive myDirective

Produces app/directives/myDirective.directive.js:

Filter

Generates an AngularJS filter.

Example:

yo thog:filter myFilter

Produces app/filters/myFilter.filter.js:

View

Generates an HTML view file in app/specifiedPath/.

Example:

yo thog:view user

Produces app/user/user.template.html:

Service

Generates an AngularJS service.

Example:

yo thog:service myService

Produces app/myService/myService.service.js:

You can also do yo angular:factory, yo angular:provider, yo angular:value, and yo angular:constant for other types of services.

Decorator

Generates an AngularJS service decorator.

Example:

yo thog:decorator serviceName

Produces app/decorators/serviceName.decorator.js:

Options

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

Minification Safe

tl;dr: You don't need to write annotated code as the build step will handle it for you.

By default, generators produce unannotated code. Without annotations, AngularJS's DI system will break when minified. Typically, these annotations that make minification safe are added automatically at build-time, after application files are concatenated, but before they are minified. The annotations are important because minified code will rename variables, making it impossible for AngularJS to infer module names based solely on function parameters.

The recommended build process uses ng-annotate, a tool that automatically adds these annotations. However, if you'd rather not use it, you have to add these annotations manually yourself. Why would you do that though? If you find a bug in the annotated code, please file an issue at ng-annotate.

Add to Index

By default, new scripts are added to the index.html file. However, this may not always be suitable. Some use cases:

  • Manually added to the file
  • Auto-added by a 3rd party plugin
  • Using this generator as a subgenerator

To skip adding them to the index, pass in the skip-add argument:

yo thog:service serviceName --skip-add

Bower Components

The following packages are always installed by the app generator:

  • angular
  • angular-mocks

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

  • angular-animate
  • angular-aria
  • angular-cookies
  • angular-messages
  • angular-resource
  • angular-sanitize
  • angular-ui-router

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

json3 and es5-shim have been removed as Angular 1.3 has dropped IE8 support and that is the last version that needed these shims. If you still require these, you can include them with: bower install --save json3 es5-shim. wiredep should add them to your index.html file but if not you can manually add them.

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 bower.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.

Note that you can also achieve the same results by adding an --appPath option when starting generator:

yo thog [app-name] --appPath=public

Testing

Running grunt test will run the unit tests with karma.

License

BSD license

Package Sidebar

Install

npm i generator-thog

Weekly Downloads

1

Version

1.0.1

License

BSD-2-Clause

Last publish

Collaborators

  • fellipebr