
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
@taskr/browserify
Advanced tools
Browserify plugin for Taskr
$ npm install --save-dev @taskr/browserify
Please see Browserify's documentation for a full list of available options.
Type: string or array
Default: ''
Define "entry" files, which represent new bundles. Optional. See an example usage.
Note: If not specified,
@taskr/browserifywill assumes all files withintask.source()are new bundle entries.
Important: This plugin (
@taskr/browserify) enforces new a bundle per entry unlikebrowserify.
Using this option is particularly handy when your task (eg, scripts) contains plugin methods whose source files should be more than your entry files.
exports.scripts = function * (task) {
yield task.source('src/scripts/app.js')
.xo() // ONLY lints one file
.browserify() // make 'app.js' bundle
.target('dist/js'); //=> dist/js/app.js
/* VS */
yield task.source('src/**/*.js')
.xo() // lints ALL files
.browserify({
entries: 'src/scripts/app.js'
}) // make 'app.js' bundle
.target('dist/js'); //=> dist/js/app.js
}
exports.default = function * (task) {
yield task.source('src/scripts/app.js')
.browserify()
.target('dist');
};
There's a huge list of browserify transforms available to you. You may require() any of them & include their functionalities in your bundles.
exports.default = function * (task) {
yield task.source('src/scripts/app.js')
.browserify({
transform: [require('reactify')]
})
.target('dist');
};
There are a handful of ways you can create multiple browserify "bundles" without the need to repeat your task.
task.source()exports.default = function * (task) {
yield task.source([
'src/scripts/app.js',
'src/scripts/admin.js'
])
.browserify()
.target('dist');
}
task.source()exports.default = function * (task) {
yield task.source('src/entries/*.js')
.browserify()
.target('dist');
}
opts.entriesexports.default = function * (task) {
yield task.source('src/**/*.js')
.browserify({
entries: [
'src/scripts/app.js',
'src/scripts/admin.js'
]
})
.target('dist');
}
Any issues or questions can be sent to the Taskr monorepo.
Please be sure to specify that you are using @taskr/browserify.
MIT © Luke Edwards
FAQs
Browserify plugin for Taskr.
The npm package @taskr/browserify receives a total of 2 weekly downloads. As such, @taskr/browserify popularity was classified as not popular.
We found that @taskr/browserify 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.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.