Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
gulp-hashify
Advanced tools
A gulp plugin for turning a stream of files into a JavaScript object.
A gulp plugin for turning a stream of files into a JavaScript object.
npm install --save-dev gulp-hashify
var hashify = require('gulp-hashify');
gulp.task('hashify', function () {
return gulp.src('./src/views/**/*.html')
.pipe(hashify('views.js'))
.pipe(gulp.dest('./dist/js'));
});
After running the hashify
task, there will be a ./dist/js/views.js
file. Let's say that the
./src/views/
directory looked like this:
/views
/errors
404.html
500.html
index.html
users.html
Then, ./dist/js/views.js
would end up looking like this:
var views = {
'errors/404': '<h1>Not found or whatever the content of /views/errors/404.html was</h1>',
'errors/500': '<h1>Doh!</h1>',
'index': 'The contents of /views/index.html',
'users': 'The contents of /views/users.html'
};
if (typeof module !== "undefined" && module.exports) {
module.exports = views;
}
The hashify function takes two arguments:
views
. If varName has a .
in it, then it will not produce a variable declaration at all.var hashify = require('gulp-hashify');
gulp.task('hashify', function () {
return gulp.src('./src/views/**/*.html')
.pipe(hashify('views.js', 'app.templates'))
.pipe(gulp.dest('./dist/js'));
});
Would produce a file that looked like this:
app.templates = {
'errors/404': '<h1>Not found or whatever the content of /views/errors/404.html was</h1>',
'errors/500': '<h1>Doh!</h1>',
'index': 'The contents of /views/index.html',
'users': 'The contents of /views/users.html'
};
if (typeof module !== "undefined" && module.exports) {
module.exports = app.templates;
}
This task will find all .html
files in ./src/views
and bundle them into an external browserify bundle. The
views object can then be imported via var views = require('views');
, provided ./dist/js/views.js
is referred
to in the HTML file.
var gulp = require('gulp');
var browserify = require('browserify');
var hashify = require('gulp-hashify');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var tap = require('gulp-tap');
gulp.task('js:views', function () {
return gulp.src('./src/views/**/*.html')
.pipe(hashify('bundled-views.js'))
.pipe(tap(function(file) {
return browserify()
.require(file, { expose: 'views' })
.bundle()
.pipe(source('views.js'))
.pipe(buffer())
.pipe(gulp.dest('./dist/js'));
}));
});
Copyright (c) 2015 Chris Davies
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A gulp plugin for turning a stream of files into a JavaScript object.
The npm package gulp-hashify receives a total of 14 weekly downloads. As such, gulp-hashify popularity was classified as not popular.
We found that gulp-hashify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.