Writing Browserify modules for your Angular app

Posted June 3rd, 2014 • 3 min read

Following up on my previous Let's Build an angular app with Browserify post I got a few questions on how to create modules for your app. Let me show you.

If you haven't already, make sure you've read the walkthrough on how to set up the environment to work with Browserify and Gulp, so you can follow along.

Basically, what you do when you require() a module, is looking for what the script you require exposes to the outside world through module.exports. This is following the CommonJS spec. This allows us to encapsulate functionality privately within our module, and only export the 'public' methods or variables to the outside world.

Now, what does this look like for our Browserify Angular app?

A Controller module

Let's assume we're using ui-router for the awesome stateprovider, and want to specify one of our own controllers through require()

var app = angular.module("myApp", ["uiRouter"]);

$stateProvider.state("about", {
    views: {
        contents: {
            controller: require("./controllers/AboutCtrl").inject(app),
            templateUrl: "/views/home.html",
        },
    },
});

What we do here is not that much different from the plain old way, but instead of including a script tag to controllers/AboutCtrl.js and using the name, we call require() on our module, and call .injdect(app) on it.

This works, because our module exports an angular controller object, which it is able to do because we inject our app. Here's what it looks like:

exports.inject = function (app) {
    app.controller("AboutCtrl", exports.controller);
    return exports.controller;
};

exports.controller = function AboutCtrl($scope) {
    $scope.regularAngular = "Hello!";
};

As you can see, our inject function takes the app, and in turn returns our controller function. Simple, clean and effective.

Dependency injection

But what if we want to use a dependency. Simply require it and inject it:

exports.inject = function (app) {
    require("./../services/SomeService").inject(app); // Require the someservice module
    app.controller("AboutCtrl", exports.controller);
    return exports.controller;
};

// Pass the SomeService as parameter
exports.controller = function AboutCtrl($scope, SomeService) {
    // And profit.
    $scope.regularAngular = SomeService.getYourStuff();
};

This is how that SomeService would look like. Not much different, but instead of exposing a controller, we return a factory:

exports.inject = function (app) {
    app.factory("SomeService", exports.factory);
    return exports.factory;
};

// Any extra dependencies can just be passed in
exports.factory = function ($http, $cookieStore, $resource) {
    var monkey = "Strawberry";

    return {
        getYourStuff: function () {
            return monkey;
        },
    };
};

And that's how we can write little re-usable modules to use in our Angular App!

I hope the above helps, and if you have any questions feel free to ask.

Happy coding.

Stay up to date

Want to know when a new post comes out and stay in the loop on tips, tricks and gotchas? Consider signing up for the Mindthecode newsletter.

Comments

Keep reading

September 18th, 2017 • 2 min read
We usually focus on getting the homepage Pagespeed to 90+, but what about the rest of the pages? I made a tool to help with this.
February 28th, 2013 • 5 min read
In this post I want to show you how you can customize the terminal to not only make it look cool but work better, too
July 10th, 2011 • 1 min read
Let me show you how you can use Markdown within your next CakePHP project