To better understand what we are going to solve in this post take a look at what Pathmodify does.
gulpfile.js
var paths = {
node_modules: '/path/to/node/modules/node_modules/',
ng_services: '/path/to/angular/services/ng_services/',
};
gulp.task('browserify', function() {
return browserify('app.js', {})
.plugin(pathmodify, {mods: [
pathmodify.mod.dir('node_modules', paths.node_modules),
pathmodify.mod.dir('ng_services', paths.ng_services)
]})
.bundle()
.pipe(stream('bundle.js'))
.pipe(gulp.dest('/js'));
});
Notice lines 8-11 which is where the pathmodify plugin is used. On lines 9-10 is where we will alias a directory. We will take line 10 as an example from here on. The method .dir in pathmodify.mod.dir() takes two arguments. The first is the name of the alias in this case it’s “ng_services”, and this can be anything you want. The second argument is the absolute system path where your in this case angular services reside.
app.js
var angular = require('node_modules/angular'); var ngRoute = require('node_modules/angular-route'); angular.module('leadGenForm', [ngRoute, 'ngMask']); angular.module('leadGenForm').factory("formDataService", require('ng_services/formDataService')); angular.module('leadGenForm').factory("dobService", require('ng_services/dobService'));
Now, in our app.js file we can use these new alias within our require() methods. Take a look at all the require methods and notice how the alias are used. So, now instated of using something along the lines of ../../../../../ you can just use the alias.