Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
browserify-header
Advanced tools
Browserify plugin for adding a header comment to the output bundle -- usually used to place license information to the top of the generated bundle.
When creating Browser versions of libraries and applications with the
help of the excellent Browserify toolchain,
comments are left in the bundle, of course. But if you compress
the output bundle (usually with the help of the Browserify plugin
minifyify), then all comments
would be stripped away. Then at least a header comment should be left,
usually holding license information about the bundle.
This Browserify plugin browserify-header
adds the first /*!...*/
comment (or alternatively just the first /*...*/
comment at all)
back to the top of the output bundle. By default the header is extracted
from the first entry file to Browserify, but a separate file can be
specified with the plugin option --file
.
$ npm install -g browserify
$ npm install -g browserify-header
$ browserify -p [ minifyify --output sample.browser.map ] \
-p browserify-header \
-o sample.browser.js sample.js
$ browserify -p [ minifyify --output sample.browser.map ] \
-p [ browserify-header --file header.js ] \
-o sample.browser.js sample.js
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-browserify");
grunt.initConfig({
browserify: {
"sample": {
files: {
"sample.browser.js": [ "sample.js" ]
},
options: {
plugin: [
[ "minifyify", { output: "sample.browser.map" } ],
[ "browserify-header", { file: "header.js" } ]
]
}
}
},
[...]
});
[...]
};
Copyright (c) 2014-2018 Ralf S. Engelschall (http://engelschall.com/)
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
Browserify Plugin for Adding Header Comment
The npm package browserify-header receives a total of 92 weekly downloads. As such, browserify-header popularity was classified as not popular.
We found that browserify-header 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.