
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
snakeskinify
Advanced tools
Using Snakeskin with Browserify.
npm install snakeskinify --save-dev
When creating your browserify bundle, just add this line:
bundle.transform(require('snakeskinify'));
or if you are a command line cowboy, something along the lines of
browserify -t snakeskinify entry.js -o bundle.js
As with most browserify transforms, you can configure snakeskinify via the second argument to bundle.transform
:
bundle.transform(require('snakeskinify'), {prettyPrint: true});
or inside your package.json
configuration:
{
"name": "my-spiffy-package",
"browserify": {
"transform": [
["snakeskinify", {"prettyPrint": true}]
]
}
}
Type: String
Name of the adaptor, for example:
Type: Object
Options for the used adaptor.
Type: Boolean
Default: false
If the parameter is set to true
the template will be launched after compiling and the results of it work will be saved.
Type: String
The name of the executable template (if is set exec
), if the parameter is not specified, then uses the rule:
%fileName% || main || index || Object.keys().sort()[0];
Type: ?
Data for the executable template (if is set exec
).
The MIT License.
FAQs
Using Snakeskin with Browserify.
We found that snakeskinify 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.