Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

snakeskinify

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snakeskinify

Using Snakeskin with Browserify.

latest
Source
npmnpm
Version
7.1.1
Version published
Maintainers
1
Created
Source

snakeskinify

Using Snakeskin with Browserify.

NPM version Build Status NPM dependencies NPM devDependencies NPM peerDependencies

Install

npm install snakeskinify --save-dev

Setup

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

Configuration

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}]
    ]
  }
}

Options

adapter

Type: String

Name of the adaptor, for example:

  • ss2react compiles Snakeskin for React
  • ss2vue compiles Snakeskin for Vue2

adapterOptions

Type: Object

Options for the used adaptor.

exec

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.

tpl

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];

data

Type: ?

Data for the executable template (if is set exec).

License

The MIT License.

Keywords

browserify

FAQs

Package last updated on 13 Jul 2016

Did you know?

Socket

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.

Install

Related posts