New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

fighterr

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fighterr

JavaScript library to ease type checking and variables value validation

latest
Source
npmnpm
Version
0.0.8
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

FightErr

JavaScript library to ease type checking and variables value validation for both browser and Node.

Installation and usage

FightErr is available with bower:

bower install fighterr

or via npm:

npm install fighterr

Disabling FightErr in production builds

Sometimes the idea of type checking on production is considered useless, while it is very handy during development. Here are a few tips on how to strip some (or even all) of the FightErr calls from the JavaScript files intended for production use.

The trick is to use UglifyJS for minifying JavaScript files with properly set Global definitions compressor options.

First of all, wrap all the FightErr calls you wish to strip later with DEBUG checks:

var myFunction = function (strArg, numArg) {
  if (DEBUG) {
    F.str('strArg', strArg, 'myFunction');
    F.num('numArg', numArg, 'myFunction');
  }
  
  // rest of the code...
}

Then if you pass:

global_defs: {
  DEBUG: false
}

the compressor will assume that's a constant defintion and will discard code like this as being unreachable.

Adapt the following configuration pieced to your building tools:

Grunt:

It is assumed that grunt-contrib-uglify plugin is installed properly.

// Project configuration.
grunt.initConfig({
  uglify: {
    options: {
      compress: {
        global_defs: {
          "DEBUG": false
        },
        dead_code: true
      }
    },
    my_target: {
      files: {
        'dest/output.min.js': ['src/input.js']
      }
    }
  }
});

Brunch:

It is assumed that uglify-js-brunch plugin is installed properly.

config =
  plugins:
    uglify:
      mangle: false
      compress:
        global_defs: 
          DEBUG: false

Documentation

Annotated source: http://nextusersf.github.io/fighterr/

License

MIT

FAQs

Package last updated on 21 Oct 2015

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