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-ng-ss

v0.1.4

Published

Yeoman generator for AngularJS with Gulp

Downloads

106

Readme

generator-ng-ss

Offers you a Yeoman generator to initiate a Web application with Angular powered by GulpJS.

Logo

Architecture

Logo

Why generator-ng-ss ?

This is a fork for generator-gulp-angular.

This generator combines the best features of other generators like generator-gulp-angular, generator-angular, ngTailor and generator-gulp-webapp into an optimal workflow for starting applications with AngularJS powered by Gulp!

generator-ng-ss scaffolds an AngularJS application with a full-featured gulpfile.js, giving you immediate out-of-the-box access to all tasks for modern web development.

My intention is to create a generator that gives users total control over their development toolbox so they can immediately start projects with their preferred tools, such as specific UI frameworks or JavaScript preprocessors.

This project is one of many things that you can use to get started on a new app. For a comparison of the options and the trade-offs between them, please visit this link.

Usage

Create your project

Install the required tools: yo, gulp, bower

npm install -g yo gulp bower

Install generator-ng-ss:

npm install -g generator-ng-ss

Make a new directory, and cd into it:

mkdir my-new-project && cd $_

Run yo ng-ss, optionally passing an app name:

yo ng-ss [app-name]

Yo options

yo ng-ss --help or yo ng-ss -h for help. All options are not required. If not provided, default values will be used.

  • --app-path='src' customize Angular's app folder, relative to cwd, default is src
  • --dist-path='dist' customize build target folder, relative to cwd, default is dist
  • --e2e-path='e2e' customize e2e test specs folder, relative to cwd, default is e2e
  • --tmp-path='.tmp' customize pre-processing temp folder, relative to cwd, default is .tmp
  • --skip-install do not run bower install and npm install after generating the app, default is false (not skip)
  • --skip-welcome-message skip yo welcome messages, default is false (not skip)
  • --skip-message skip install messages, default is false (not skip)
  • --default use default configurations, default is false
  • --advanced prompt for advanced additional features, default is false

Paths configuration are stored in gulpfile.js. Change options.(src|dist|tmp|e2e) in gulpfile.js if you want to config paths after the app is generated.

Warning: The paths are also written in the index.html for the build with useref. If you want to change these paths, you also have to change the paths there in order to have the build task working.

Use Gulp tasks

  • gulp or gulp build to build an optimized version of your application in /dist
  • gulp serve to launch a browser sync server on your source files
  • gulp serve:dist to launch a server on your optimized application
  • gulp test to launch your unit tests with Karma
  • gulp test:auto to launch your unit tests with Karma in watch mode
  • gulp protractor to launch your e2e tests with Protractor
  • gulp protractor:dist to launch your e2e tests with Protractor on the dist files

More information on the gulp tasks in this README.md.

Directory structure

Best Practice Recommendations for Angular App Structure

The root directory generated for a app with name gulpAngular :

16 directories, 50 files

Sub-generators

Also you can use sub-generators for creating program modules, components, etc. All of command should enter in main project folder.

wrap-module

Wrap-module is module which includes others wrap-modules or modules.

yo ng-ss:wrap-module <name> --path=<path>

For example, let's create module with name quest in main module

yo ng-ss:wrap-module quest --path=main

It will create index.js file in folder app/main/quest, also this file will be including in index.js in app/main folder.
If path is empty, it will be create in app folder and including into index.module.js

module

yo ng-ss:module <name> --path=<path>

For example, lets create gold in quest module

yo ng-ss:module gold --path=main/quest

It will create next structure:
app/main/quest/gold/index.js
app/main/quest/gold/controllers/gold.controller.js
app/main/quest/gold/spec/gold.controller.spec.js
app/main/quest/gold/views/gold.html
app/main/quest/gold/styles/gold.less

Also gold module will be including into quest module, and parts of gold module will be including in app/main/quest/gold/index.js too.

component

yo ng-ss:component <name> --include=<partsOfComponent> --exclude=<partsOfComponent>

include and exclude isn't mandatory parameters. If you don't enter it, generator will create all parts of component.

available parts of component

  • view
  • style
  • directive
  • controller

Also if you generate directive and controller together, controller will be included into directive.

This generator creates new component in components with next structure app/components/<name>/<name>.controller.js
app/components/<name>/<name>.controller.spec.js
app/components/<name>/<name>.directive.js
app/components/<name>/<name>.directive.spec.js
app/components/<name>/<name>.less
app/components/<name>/<name>.html

Also you can choose components which will be include or exclude from list of generating files.
For example

yo ng-ss:component test --include=view,controller

or

yo ng-ss:component test --exclude=style,directive

Features included in the gulpfile

  • useref : allow configuration of your files in comments of your HTML file
  • ngAnnotate : convert simple injection to complete syntax to be minification proof
  • uglify : optimize all your JavaScript
  • csso : optimize all your CSS
  • rev : add a hash in the file names to prevent browser cache problems
  • watch : watch your source files and recompile them automatically
  • jshint : JavaScript code linter
  • imagemin : all your images will be optimized at build
  • Unit test (karma) : out of the box unit test configuration with karma
  • e2e test (protractor) : out of the box e2e test configuration with protractor
  • browser sync : full-featured development web server with livereload and devices sync
  • angular-templatecache : all HTML partials will be converted to JS to be bundled in the application
  • TODO lazy : don't process files which haven't changed when possible

Questions the generator will ask

  • jQuery: jQuery 1.x, 2.x, Zepto, none
  • Angular modules: animate, cookies, touch, sanitize
  • Resource handler: ngResource, Restangular, none
  • Router: ngRoute, UI Router, none
  • UI Framework: Bootstrap, Foundation, Angular Material, none (depends on the chosen CSS preprocessor)
  • UI directives : UI Bootstrap, Angular Strap, official Bootstrap JavaScript, Angular Foundation, official Foundation JavaScript, none (depends on the UI framework)
  • CSS pre-processor: Less, Sass
  • JS preprocessor: ECMAScript 6 (Traceur and Babel)
  • HTML preprocessor: none
  • TODO Script loader: Require, Webpack, none
  • TODO Test framework: Jasmine, Mocha, Qunit

License

MIT