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

gulp-file-bundle

v1.0.1

Published

A gulp plugin for bundling static files using in a simple inclue (bundle) file. Supports both css and js bundling.

Downloads

24

Readme

gulp-file-bundle

A Gulp plugin for bundling js and css resources as an external reference.

Overview

The plugin is minimalistic and simple. It generates the bundle file on the fly and adds it to the stream of files passing through it.

For example, the following folder structure:

+ src
    - file1.js
    + fldr
        - file1.js
        - file2.js

And gulp task:

gulp.task('bundle.js', function() {
    return gulp.src('src/**/*.js')
        .pipe(bundle('bundle.js', {
            type: 'js', //can be ommited, it is the default
            base: 'src'
        }))
        .pipe(gulp.dest('dst'));
});

Results in a directory like so:

+ dst
    - bundle.js
    - file1.js
    + fldr
        - file1.js
        - file2.js

And a bundle.js content like so:

document.write('<script src="file1.js"></script>');
document.write('<script src="fldr/file1.js"></script>');
document.write('<script src="fldr/file2.js"></script>');

A css bundling task is similar and looks like this:

gulp.task('bundle.css', function() {
    return gulp.src('src/**/*.css')
        .pipe(bundle('bundle.css', {
            type: 'css',
            base: 'src'
        }))
        .pipe(gulp.dest('dst'));
});

The content of the bundle.css is the following:

@import url(file1.css);
@import url(fldr/file1.css);
@import url(fldr/file2.css);

Parameters

bundle(bundleName, options)

bundleName

Type: String

The name of the bundle file. This file is added to the stream of files passing through the plugin. It is a gulp only file, and must be saved using gulp.dest or a similar facility to be available in the file system.

options

options.emitInputFiles

Type: Boolean Default value: true

By default, the plugin emits all input files before it emits the bundle file, so it add one file to the stream of files. Setting this option to false, will cause the plugin to filter out all input files and only emit the bundle file.

options.type

Type: String Default value: 'js'

Either 'js' or 'css'. Determine the type of the bundle file i.e wether it uses <script src=""> or <link rel=""> tag to reference the external files.

options.base

Type: String

The base to use for the bundle file and the input file. Determines the relative path used for the href and src attributes.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Gulp.

Release History

  • 1.0.0 - Basic features.
  • 1.0.1 - Minor fix for strict mode.

License

MIT