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

babel-plugin-remove-module-hot

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-remove-module-hot

Remove `module.hot` conditions

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

babel-plugin-remove-module-hot

npm version Build Status

Remove module.hot conditions.

Sponsored by Evil Martians

Example

in
console.log('Do something always');

if (module.hot) {
  console.log('Do something, when hot reload available');
}

if (module.hot) {
  console.log('Do something, when hot reload available');
} else {
  console.log('Do something, when hot reload unavailable');
}

if (!module.hot) {
  console.log('Do something, when hot reload unavailable');
}

const variable = module.hot ? 'hot' : 'not hot';
out
console.log('Do something always');

if (true) {
  console.log('Do something, when hot reload unavailable');
}

if (!module.hot) {
  console.log('Do something, when hot reload unavailable');
}

const variable = 'not hot';

Warning

This plugin removes only simple condition like in example, and doesn't process more complex expressions.

Installation

$ npm install babel-plugin-remove-module-hot

Usage

.babelrc

{
  "plugins": ["remove-module-hot"]
}

Via CLI

$ babel --plugins remove-module-hot script.js

Via Node API

require('babel-core').transform('code', {
  plugins: ['remove-module-hot']
});

Keywords

FAQs

Package last updated on 13 May 2016

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