• Stars
    star
    1,033
  • Rank 44,270 (Top 0.9 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 10 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Boilerplate using AngularJS, SASS, Gulp, and Browserify and utilizing best practices.

angularjs-gulp-browserify-boilerplate

❗ Warning: This boilerplate is no longer maintained and I would not recommend starting a new project with it.


Build Status dependencies Status devDependency Status

A boilerplate using AngularJS, SASS, Gulp, and Browserify that also utilizes these best AngularJS practices and Gulp best practices from this resource.

View contributors


Getting up and running

  1. Clone this repo from https://github.com/jakemmarsh/angularjs-gulp-browserify-boilerplate.git
  2. Run npm install from the root directory
  3. Run npm run dev
  4. Your browser will automatically be opened and directed to the browser-sync proxy address
  5. To prepare assets for production, run the npm run build script (Note: the production task does not fire up the express server, and won't provide you with browser-sync's live reloading. Simply use npm run dev during development. More information below)

Now that npm run dev is running, the server is up as well and serving files from the /build directory. Any changes in the /app directory will be automatically processed by Gulp and the changes will be injected to any open browsers pointed at the proxy address.

Other resources


This boilerplate uses the latest versions of the following libraries:

Along with many Gulp libraries (these can be seen in either package.json, or at the top of each task in /gulp/tasks/).


AngularJS

AngularJS is a MVW (Model-View-Whatever) Javascript Framework for creating single-page web applications. In this boilerplate, it is used for all the application routing as well as all of the frontend views and logic.

The AngularJS files are all located within /app/js, structured in the following manner:

/controllers
  index.js   (the main module on which all controllers will be mounted, loaded in main.js)
  example.js
/directives
  index.js   (the main module on which all directives will be mounted, loaded in main.js)
  example.js
/filters
  index.js (the main module on which all filters will be mounted, loaded in main.js)
  example.js
/services
  index.js   (the main module on which all services will be mounted, loaded in main.js)
  example.js
constants.js  (any constant values that you want to make available to Angular)
main.js       (the main file read by Browserify, also where the application is defined and bootstrapped)
on_run.js     (any functions or logic that need to be executed on app.run)
on_config.js  (all route definitions and any logic that need to be executed on app.config)
templates.js  (this is created via Gulp by compiling your views, and will not be present beforehand)
Module organization

Controllers, services, directives, etc. should all be placed within their respective folders, and will be automatically required and mounted via their respective index.js using bulk-require. All modules must export an object of the format:

const ExampleModule = function() {};

export default {
  name: 'ExampleModule',
  fn: ExampleModule
};
Dependency injection

Dependency injection is carried out with the ng-annotate library. In order to take advantage of this, a simple directive prologue of the format:

function MyService($http) {
  'ngInject';
  ...
}

needs to be added at the very beginning of any Angular functions/modules. The Gulp tasks will then take care of adding any dependency injection, requiring you to only specify the dependencies within the function parameters and nothing more.


SASS

SASS, standing for 'Syntactically Awesome Style Sheets', is a CSS extension language adding things like extending, variables, and mixins to the language. This boilerplate provides a barebones file structure for your styles, with explicit imports into app/styles/main.scss. A Gulp task (discussed later) is provided for compilation and minification of the stylesheets based on this file.


Browserify

Browserify is a Javascript file and module loader, allowing you to require('modules') in all of your files in the same manner as you would on the backend in a node.js environment. The bundling and compilation is then taken care of by Gulp, discussed below.


Gulp

Gulp is a "streaming build system", providing a very fast and efficient method for running your build tasks.

Web Server

Gulp is used here to provide a very basic node/Express web server for viewing and testing your application as you build. It serves static files from the build/ directory, leaving routing up to AngularJS. All Gulp tasks are configured to automatically reload the server upon file changes. The application is served to localhost:3002 once you run the npm run dev script. To take advantage of the fast live reload injection provided by browser-sync, you must load the site at the proxy address (within this boilerplate will by default be localhost:3000). To change the settings related to live-reload or browser-sync, you can access the UI at localhost:3001.

Scripts

A number of build processes are automatically run on all of our Javascript files, run in the following order:

  • JSHint: Gulp is currently configured to run a JSHint task before processing any Javascript files. This will show any errors in your code in the console, but will not prevent compilation or minification from occurring.
  • Browserify: The main build process run on any Javascript files. This processes any of the require('module') statements, compiling the files as necessary.
  • Babelify: This uses babelJS to provide support for ES6+ features.
  • Debowerify: Parses require() statements in your code, mapping them to bower_components when necessary. This allows you to use and include bower components just as you would npm modules.
  • ngAnnotate: This will automatically add the correct dependency injection to any AngularJS files, as mentioned previously.
  • Uglifyify: This will minify the file created by Browserify and ngAnnotate.

The resulting file (main.js) is placed inside the directory /build/js/.

Styles

Just one plugin is necessary for processing our SASS files, and that is gulp-sass. This will read the main.scss file, processing and importing any dependencies and then minifying the result. This file (main.css) is placed inside the directory /build/css/.

  • gulp-autoprefixer: Gulp is currently configured to run autoprefixer after compiling the scss. Autoprefixer will use the data based on current browser popularity and property support to apply prefixes for you. Autoprefixer is recommended by Google and used in Twitter, WordPress, Bootstrap and CodePen.
Images

Any images placed within /app/images will be automatically copied to the build/images directory. If running npm run build, they will also be compressed via imagemin.

Views

When any changes are made to the index.html file, the new file is simply copied to the /build/ directory without any changes occurring.

Files inside /app/views/, on the other hand, go through a slightly more complex process. The gulp-angular-templatecache module is used in order to process all views/partials, creating the template.js file briefly mentioned earlier. This file will contain all the views, now in Javascript format inside Angular's $templateCache service. This will allow us to include them in our Javascript minification process, as well as avoid extra HTTP requests for our views.

Watching files

All of the Gulp processes mentioned above are run automatically when any of the corresponding files in the /app directory are changed, and this is thanks to our Gulp watch tasks. Running npm run dev will begin watching all of these files, while also serving to localhost:3002, and with browser-sync proxy running at localhost:3000 (by default).

Production Task

Just as there is the npm run dev command for development, there is also a npm run build command for putting your project into a production-ready state. This will run each of the tasks, while also adding the image minification task discussed above. There is also an empty deploy task (run with npm run deploy) that is included when running the production task. This deploy task can be fleshed out to automatically push your production-ready site to your hosting setup.

Reminder: When running the production task, gulp will not fire up the express server and serve your index.html. This task is designed to be run before the deploy step that may copy the files from /build to a production web server.

Pre-compressing text assets

When building with npm run build, a pre-compressed file is generated in addition to uncompressed file (.html.gz, .js.gz, css.gz). This is done to enable web servers serve compressed content without having to compress it on the fly. Pre-compression is handled by gzip task.

Testing

A Gulp tasks also exists for running the test framework (discussed in detail below). Running gulp test will run any and all tests inside the /test directory and show the results (and any errors) in the terminal.


Testing

This boilerplate also includes a simple framework for unit and end-to-end (e2e) testing via Karma and Jasmine. In order to test AngularJS modules, the angular.mocks module is used.

All of the tests can be run at once with the command npm test. However, the tests are broken up into two main categories:

End-to-End (e2e) Tests

e2e tests, as hinted at by the name, consist of tests that involve multiple modules or require interaction between modules, similar to integration tests. These tests are carried out using the Angular library Protractor, which also utilizes Jasmine. The goal is to ensure that the flow of your application is performing as designed from start to finish.

In this boilerplate, two end-to-end test examples are provided:

  • routes_spec.js, which tests the functionality of our AngularJS routing
  • example_spec.js, which tests the functionality of the example route, controller, and view

More examples can be seen at the above link for Protractor.

All e2e tests are run with npm run protractor.

Unit Tests

Unit tests are used to test a single module (or "unit") at a time in order to ensure that each module performs as intended individually. In AngularJS this could be thought of as a single controller, directive, filter, service, etc. That is how the unit tests are organized in this boilerplate.

An example test is provided for the following types of AngularJS modules:

  • unit/controllers/example_spec.js
  • unit/services/example_spec.js
  • unit/directives/example_spec.js
  • unit/constants_spec.js

All unit tests are run with npm run unit. When running unit tests, code coverage is simultaneously calculated and output as an HTML file to the /coverage directory.

More Repositories

1

react-rocket-boilerplate

A boilerplate written in ES6 using ReactJS (along with React Router and RefluxJS), SASS, Gulp, and Browserify.
JavaScript
361
star
2

react-tour-guide

A ReactJS mixin to give new users a popup-based tour of your application.
JavaScript
152
star
3

neural-network-stock-predictor

Semester project for COS 470 (Artifical Intelligence) at the University of Maine.
Python
88
star
4

expressed-boilerplate

A boilerplate for quickly building APIs on node.js and Express.
JavaScript
59
star
5

node-soundcloud

node.js wrapper for the Soundcloud SDK
JavaScript
32
star
6

grunt-requirejs-angularjs-sass-boilerplate

A boilerplate for Grunt, RequireJS, AngularJS, and SASS.
CSS
25
star
7

node-bandcamp

node.js (unofficial) Bandcamp API.
JavaScript
16
star
8

react-native-diff-view

A React Native module for parsing and displaying git diffs.
TypeScript
15
star
9

react-annotator

A React mixin to allow for user annotations directly on images.
JavaScript
14
star
10

acadeME

interactive eLearning platform for University of Maine senior capstone project
JavaScript
12
star
11

reddit-tumblr-bot

a Reddit-to-Tumblr bot in Python
Python
9
star
12

assemble-static-boilerplate

A boilerplate using Assemble and Gulp to quickly and efficiently create static websites.
JavaScript
5
star
13

playback-queue

A fully-featured and generic playback queue for music objects including history, shuffle, and repeat.
JavaScript
5
star
14

mono-ts-starter

A boilerplate for starting and publishing a TypeScript npm module.
JavaScript
2
star
15

ebs-setup

Custom build hooks and configuration for Elastic Beanstalk.
Shell
2
star
16

golang-api

A basic API in Go.
Go
1
star
17

craigslist.js

A Javascript API wrapper for craigslist.org.
JavaScript
1
star
18

gulp-git-status

A Gulp plugin for selectively including source files based on their Git status.
JavaScript
1
star
19

Gifft

A React-Native iOS app for managing upcoming occasions with reminders and gift ideas.
JavaScript
1
star
20

coyote-moves

Internal web app to visually search for fellow employees and initiate desk moves.
JavaScript
1
star
21

downloadr

A simple file-sharing web app built on the MEAN stack.
JavaScript
1
star
22

monolist-music-web

The web application for the now-defunct music app Monolist.
JavaScript
1
star
23

monolist-music-api

node.js server and Express API for the now-defunct music app Monolist.
JavaScript
1
star
24

jakemmarsh.github.io

source for my personal website, hosted on Github Pages
CSS
1
star
25

nftea

A simple dapp for minting NFTs on IPFS.
TypeScript
1
star