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-angularjs-skeleton

v1.0.0-rc.1

Published

A Yeoman generator for creating AngularJS project skeleton with set of useful features

Downloads

4

Readme

License

Generator of AngularJS project skeleton based on Hottowel generator.

The key differences:

  • task for angular files generation (controllers, models, directives etc.)
  • replaced LESS with SASS
  • used decorator which blocks duplicate requests

Preconditions

  1. Install Node.js

  2. Install next NPM modules globally

    npm install -g bower gulp nodemon 
  3. Install Yeoman

    npm install -g yo

Quick Start

  1. Install generator-angularjs-skeleton

    npm install -g generator-angularjs-skeleton
  2. Create a new folder for project and step inside it

    mkdir myapp
    cd myapp
  3. Run the generator

    yo angularjs-skeleton 
  4. Install dependencies

    npm install
  5. Start the project and begin coding

    gulp serve-dev

Project structure

/src
    /client
        /app
            /core <!-- main module and config files -->
            /routes <!-- route files -->
            /models <!-- factories -->
            /directives <!-- folder with directives -->
            /components <!-- folder with components -->
            /filters <!-- folder with filters -->
            
            <!-- folders with controllers and corresponding views -->
            /main
            /dashboard

Gulp tasks

  • gulp generate

    Use gulp tasks listed below to generate your controllers, models, routes etc. easily.

    • gulp generate --controller controller_name - will add folder for controller (if it does not exist) and generate controller with name ControllerNameController
    • gulp generate --model model_name - will add file model_name.model.js to models folder and generate model with name ModelNameModel
    • gulp generate --model route_file_name - will add file route_file_name.route.js to routes folder
    • gulp generate --directive directive_name - will add file directive_name.directive.js to directives folder and generate directive with name directiveName
    • gulp generate --module module_name - - will add folder for module (if it does not exist) and generate module with module name module_name

    You can add --module [module_name] to all generators (except module generator) to attach a file to specified module. By default it will be attached to app.core

  • gulp vet

    Runs jshint and jscs on all javascript files.

  • gulp test

    Runs all unit tests (using Karma runner and next frameworks: mocha, chai and sinon).

  • gulp styles

    Compile scss files to CSS and copy to the build folder

  • gulp serve-dev

    Serves the development code and launches it in a browser. The goal of building for development is to do it as fast as possible, to keep development moving efficiently. This task serves all code from the source folders and compiles sass to css in a temp folder.

  • gulp build

    Copies all fonts, copies images and runs gulp html to build the production code to the build folder.

  • gulp serve-build

    Serve the optimized code from the build folder and launch it in a browser.

TODOs

  • writing more detailed documentation
  • generator tests implementation

License

MIT