babel-plugin-kwola
v0.0.19
Published
Plugin to instrument a JS application to be analyzed by kwola.
Downloads
5
Readme
babel-plugin-kwola
Plugin to instrument a JS application to be analyzed by kwola.
Example
In
// input code
Out
"use strict";
// output code
Installation
$ npm install babel-plugin-kwola
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["kwola"]
}
Via CLI
$ babel --plugins kwola script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["kwola"]
});