1.2.3 • Published 10 years ago

includify v1.2.3

Weekly downloads
271
License
MIT
Repository
github
Last release
10 years ago

Include the contents of a file during browserify build.

Usage

In your .js file:

includify('./foo.js');

The 'includify' call will be replaced with the contents of foo.js.

You may optionally pass a second parameter to describe how the file should be included:

// Will be replaced with the contents of foo.js (the default).
includify('./foo.js', 'direct');

// Will be replaced with a string containing the base64 encoding of foo.gif
var imgUrl = "data:image/png;base64," + includify('./loading.gif', 'base64');
1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago