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