Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-sitrep

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-sitrep

Log all assignments and the return value of a function with a simple comment

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
75
decreased by-10.71%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-sitrep

Log all assignments and the return value of a function with a simple comment

Example

In

// sitrep
function bar () {
  var a = 'foo'
  const b = 'bar'
  let c = [a, b].map(x => x)
  return c.join('-')
}

// sitrep
var cb = x => x.charAt(0)

// sitrep
var cb = x => {
  x = x + 2
  x.charAt(0)
  return x
}

// sitrep
var a = function () {
  return 'foo'
}

const obj = {
  // sitrep
  fn() {
    let a = 5
    return a + 5
  }
}

class Boom {
  // sitrep
  fire() {
    let a = 2
    return a + 5
  }
}

↓ ↓ ↓ ↓ ↓ ↓

Out

// sitrep
function bar () {
  console.log("function: bar ") ;
  var a = 'foo';
  console.log('a', a);
  const b = 'bar';
  console.log('b', b);
  let c = [a, b].map(function (x) {
    var _returnValue2 = x;
    console.log('Return Value:', _returnValue2);
    return _returnValue2;
  });
  console.log('c', c);
  var _returnValue = c.join('-');
  console.log('Return Value:', _returnValue);
  return _returnValue;
}

// sitrep
var cb = function (x) {
  var _returnValue3 = x.charAt(0);

  console.log('Return Value:', _returnValue3);
  return _returnValue3;
};

// sitrep
var cb = function (x) {
  x = x + 2;
  console.log('x', x);
  x.charAt(0);
  var _returnValue4 = x;
  console.log('Return Value:', _returnValue4);
  return _returnValue4;
};

// sitrep
var a = function () {
  var _returnValue5 = 'foo';
  console.log('Return Value:', _returnValue5);

  return _returnValue5;
};

const obj = {
  // sitrep
  fn() {
    let a = 5;
    console.log('a', a);

    var _returnValue6 = a + 5;

    console.log('Return Value:', _returnValue6);
    return _returnValue6;
  }
};

class Boom {
  // sitrep
  fire() {
    let a = 2;

    console.log('a', a);

    var _returnValue7 = a + 5;

    console.log('Return Value:', _returnValue7);
    return _returnValue7;
  }
}

Installation

npm install --save-dev babel-plugin-sitrep

Usage

.babelrc

Without options:

{
  "plugins": ["sitrep"]
}

Via CLI

babel --plugins sitrep script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["sitrep"]
});

FAQs

Package last updated on 12 Sep 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc