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

babel-plugin-transform-iife-for-debug

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-iife-for-debug

> Automatically execute debug code in the development environment without affecting production code. > > 在不会影响到生产代码的前提下,在开发环境对调试代码进行自动执行。

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

babel-plugin-transform-iife-for-debug

Automatically execute debug code in the development environment without affecting production code.

在不会影响到生产代码的前提下,在开发环境对调试代码进行自动执行。

You can easily write debug code in the development environment without having to delete it before testing, avoiding the risk of taking debug code to production.

让你可以在开发环境轻松编写调试代码,而不需要在发布测试环境前仔细核对并删除,能避免把调试代码带上生产的风险。

Install

Using npm:

npm install --save-dev babel-plugin-transform-iife-for-debug

or using yarn:

yarn add babel-plugin-transform-iife-for-debug --dev

Usage

// .babelrc
{
    "plugins": [
        ["transform-iife-for-debug"]
        // with options:
        // ["transform-iife-for-debug", {"targetFlag": "@IIFE-for-debug", ...}]
    ]
}

Source Code:

let normalNum = 1 + 2;

// @IIFE-for-debug
() => {
    normalNum = 10
}

let normalResult = normalNum * 10;

After Transforming(development)

let normalNum = 1 + 2;

// [IIFE]
// @IIFE-for-debug
(() => {
    normalNum = 10
})()

let normalResult = normalNum * 10;

After Transforming(not development)

let normalNum = 1 + 2;

// [removed]
// @IIFE-for-debug

let normalResult = normalNum * 10;

Options

// Default
{   
    targetFlag: '@IIFE-for-debug',
    enableCondition: () => true,
    transformCondition: () => process.env.NODE_ENV==='development'
}

Keywords

FAQs

Package last updated on 08 Apr 2021

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