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

v2.0.0-alpha1

Published

Yeoman generator

Downloads

90

Readme

fatarrow

###An AngularJS application Reference Architecture License Version Build Status Dependency Status

Build AngularJS applications with CoffeeScript - without the ceremony. By the way, you can write JavaScript too.

Table of Contents

Installing

Before running, you must install and configure the following one-time dependencies:

Enter the following in the terminal

Option 1: Using Yeoman Generator (Recommended)

$ npm install -g gulp yo bower
$ npm install -g generator-fatarrow
$ mkdir my-new-project && cd $_
$ yo fatarrow

Option 2: Clone this repo

$ npm install -g gulp
$ git clone [email protected]:CaryLandholt/fatarrow.git
$ cd fatarrow
$ npm install

Running

Here are some useful commands to get started:

Get all commands and options by typing

$ gulp help

Running with With a fake backend ($httpBackend)

$ gulp

With a real backend (gulp will proxy calls to the backend of your choice)

$ gulp --backend

Build for production

$ gulp --prod --no-serve

Run tests on your build server

$ gulp test --citest --no-open

Deploy your app

$ gulp test --citest --no-open
$ gulp --prod --no-serve
# deploy to a path (configuration in /config/locationConfig.coffee)
$ gulp deploy
# deploy to S3 (configurtion in /config/s3Config.coffee)
$ gulp deploy --target s3

Scripting

Your choice of scripting languages.

Styling

Your choice of styling languages.

Templating

Your choice of templating engines.

Structure

  • File extensions supported by fatarrow:
    • Scripts: .coffee, .js, .ls, .ts, .es6
    • Styles: .less, .css, .scss
    • Templates: .html, .haml, .jade

(Note: to keep the example succint, .coffee, .html and .less extensions are used below. However, all of the file extensions listed above can be used, and even can be mix-and-matched.)

The root directory generated for a fatarrow app:

Explanation of the folders:

  • src/app: Angular module for the app. All app level config should go here.
  • src/home: Each feature of the app should go in its own folder. It should contain all scripts, styles, templates and tests within the feature folder.
  • src/components: Reusable components (directives, factories, styles, etc.)
  • e2e: Protractor tests. They should also be separated by features/components.
  • config: Configurtion for gulp tasks broken up by each task.

Features

  • Fake data: Running gulp will include the .backend.coffee files and therefore Angular's $httpBackend will be utilized. This should be used for backendless development.
  • Real data: Running gulp --backend will proxy all backend calls to the backend of your choice. See below for configuration instructions.
  • Production build: Running gulp --prod will produce builds for production. This includes:
    • ngAnnotate : make your angular code minification proof
    • ngClassify : CoffeeScript classes for angular
    • minification : JS, CSS and HTML
    • image minification: images from teh img folder are compressed
    • rev: minified files are rev'ed for browser cache busting
    • templatecache : take all angular templates and include them in the minified scripts
    • deploy: deploy to a path or to AWS S3. see above for commands.
  • Dev Workflow:
    • watch : watch your src folder and rebuild and reload automatically
    • linting : lint .js and .coffee files. style checking and fixing with JSCS
    • test : run e2e (protractor) and unit (karma) tests
    • browserSync : test on multiple devices simultaneously
    • newer: only process changed files
    • HTML5Mode: Angular's html5Mode is supported on the BrowserSync server. Be sure to configure your production web server. HTMO5Mode is turned on by default. See Angular's documentation to turn it off for browser compatibility.
    • plato: perform code visualization, static analysis, and complexity analysis
    • update notifications: yeoman scaffolded projects will get notifications and instructions on upgrading the project

Configuration

(Note: Configuration for the rest of the gulp plug-ins lives in the config folder.)

  • app.coffee
    • APP_NAME: name of the angular module for the app
  • bower.coffee
    • BOWER_COMPONENTS: consume dependencies from bower by specifying dependency name, version, dependency type (scripts, styles, etc.) and a list of files to be consumed (cherry picking files).
  • coffeeLint.coffee: options for linting CoffeeScript. See reference
  • e2e.coffee: options for protractor. See reference.
  • karma.coffee: options for karma. See reference
  • languages.coffee: disable compilers not in use to optimize your build
  • less.coffee: options for the less compiler. See reference
  • locationDeploy.coffee: deploy app to a path
  • plato.coffee: options for plato. See reference
  • s3Deploy.coffee: options to deploy to AWS S3. See reference
  • SCRIPTS: load order for scripts
  • server.coffee: options for browser-sync development server
    • PROXY_CONFIG: proxy backend calls during development with connect-modrewrite. See reference
    • PORT: run app on a specific port (default: 8181)
  • STYLES: load order for styles

Add Bower Component

You need three pieces of information for each Bower component to include in your app.

  1. The Bower component name (e.g. restangular)
  2. The version of the component (e.g. 1.4.0)
  3. The files within the component to include in your app (e.g. restangular.min.js)

The following will include the restangular component, version 1.4.0, and place the dist/restangular.min.js file in the vendor/scripts directory. By default, all Bower components will be placed in the vendor directory.

BOWER_COMPONENTS =
	'restangular': '1.4.0':
		scripts: 'dist/restangular.min.js'

If load order is important, include a reference to the file in the SCRIPTS section.

The following will ensure restangular is loaded prior to app.js.

SCRIPTS =
	'**/angular.min.js'
	'**/restangular.min.js'
	'**/app.js'
	'**/*.js'

For AngularJS components, include a reference to the module within your application. For example:

angular.module('app', ['restangular']);

Contributing

See CONTRIBUTING.md

Changelog

See CHANGELOG.md

License

See LICENSE