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

webforge-js-builder

v1.2.1

Published

Build your web-project with gulp

Downloads

27

Readme

Webforge js Builder

Manages the build with gulp.

Concept

You will call the builder from your gulpfile. The builder contains several lanes. A lane consists of several gulp streams. When a lane is run the streams will be merged afterwards and returned back to your gulpfile.
This setup allows you to use a lane for all your javascript:

builder.js('bootstrap')
 .src('node_modules/bootstrap/dist/bootstrap.js')
 .pipe('plugin', arg1, arg2)

builder.js('jquery')
 .src('node_modules/jquery/dist/jquery.js')
 .pipe('plugin', arg1, arg2)

builder.js('knockout')
  .src('lib/knockout.js')

in your gulpfile.js

gulp.task('javascript', function() {
  return builder.run('js')
    // optionaly: run them through r.js or combine or uglify or jshint them ...
    .pipe(gulp.dest('build/js'))
});

Pitfalls

  • use the gulp-subtask - Syntax after .js() or .task()
  • use the normal gulp syntax after builder.run()
  • be aware that gulp will NOT show errors if some node modules haven't been found. Be sure install the node_modules you need (e.g. requirejs for the requirejs-config-gulp-task)

why should I use something so complicated?

Have you ever had a project that needs to be build with more than 5 dependencies installed from different sources? One comes from npm, one relies in the git repository, one is installed by bower, etc. It's really a pain to list all those files that need to be integrated into your build. E.g. twitter-bootstrap needs jquery, you want to use knockout and the knockout-mapping plugin. You will find yourself writing a lot of simple tasks just to copy files from the targets to your build folder just to optimize or concat them. This is slow and error prone. Think of the example above in the concept. The builder.task('js', ...)- calls could rely in any node module you like. This way you can combine the source AND the code to build the source for every dependency. When the build mechanism for a dependency might change, you are prepared and you wouldn't have to change all your builds in every project.

Look at the gulp.dest call. It's only done once so that your dependency build script does not need to worry about the build target. Your build is still in charge of all file locations and tasks!

installation

npm install --save-dev webforge-js-builder
npm install --save-dev gulp

usage

create the builder

var WebforgeBuilder = require('webforge-js-builder');

var builder = new WebforgeBuilder(gulp, { root: __dirname, dest: "www/cms/assets" });

The passed param dest will be referenced in this documentation as {{dest}}. Pass root if you want to use relative paths in taskConfigs or other paths given to the builder.

install a node module

To install for example jquery from node_module do:

npm install --save jquery

add to your gulpfile.js:

builder
  .registerTask('javascript')
  .addConfigured('js', 'jquery')

run gulp javascript if {{dest}} is defined as www/assets then the file: www/assets/js/jquery.js should be created from the builder
Set your requirejs baseUrl to /assets/js if www is the document-root from your webserver and you should be able to load jquery from requirejs.

var require = {
  baseUrl: '/assets/js'
};

define('main', ['jquery', function($) {
  console.log($('body'));
});

api

.registerTask(name, taskConfig)
creates an already defined gulp task (look into gulp-tasks.js in this repo). Gulp tasks will be registered with exactly this name. Those tasks are written by convention. Some tasks need a taskConfig which is passed as second argument

.addConfigured(lane, name): creates an already defined subtask for a specific lane (look into configured-tasks.js in this repo). adds an configuration for an commonly used (npm-) module. These are shorthands for some .add() calls

.add(lane, name) adds a builder subtask for the specific lane given by its name. To add tasks to the javscript-gulp task you have to use the lane js. E.g.:

builder.add('js', 'cms')
  .src('src/js/cms/**/*.js')
  .pipe(builder.dest, 'cms');

will copy/lint/minify all files in src/js/cms which end on .js and write them into the directory: {{dest}}/js/cms. Notice that builder.dest refers to a relative path in the {{dest}}-directory.
Notice the lazypipe syntax.

Specific Tasks and Configurations

requirejs

I dont see how the latest gulp-amd-optimize plugins work well with my previous (advanced) requirejs setup. So the webforge-js-builder does use a native gulp task, that operates on written files. Uglify is enabled by default.

The requirejs task is hooked into the javascript lane if you configure and enable it:

  .registerTask('javascript', {
    'combine': true,
    'requirejs': {
      
      mainConfigFile: 'src/js/config.js', // adds some paths here. But nocie: baseUrl will be overriden anyway through this config

      modules: [
        {
          name: "main"
        },
      ],
    }
  })

make sure that combine is set to true and you provide at least one module. Notice that the list of modules should match your entries from HTML that do require(['modulename']). You need to list every modulename here because if you miss a layer, the dependencies of the modules might be minified and cannot be found anymore.

Because the javascript lane can include files from everywhere, the whole javascript-lane-files have to be written to a temporary directory, which is then optimized and uglified by the r.js optimizier. So be carfeul if you write files in to the javascript-lane destination - they might be killed bei r.js and resist only in the tmp directy (which is files/cache/webforge-js-builder/javascript by defaul).