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

babel-plugin-rewrite-require

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-rewrite-require

Babel plugin for rewriting requires/imports

  • 1.14.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2K
increased by117.55%
Maintainers
1
Weekly downloads
 
Created
Source

Babel plugin for rewriting requires/imports

Module aliases

This plugin allows rewriting ES6 module imports and CommonJS-style require() calls using a simple module alias map:

{
  "aliases": {
    "some-module": "some-replacement-module",
    "another-module": "another-module/browser"
  },
}

Non-string literals

With the following option enabled, require() calls that do not have a simple string literal argument will be replaced with an exception being thrown:

{
  "throwForNonStringLiteral": true
}

This approach is used by several browserify modules to detect whether their built-in counterparts are available (e.g. require('cry'+'pto')) and should be enabled if you use this Babel plugin to alias node built-in modules to browserify modules.

Optional modules

A common pattern found in node modules is to check whether a certain dependency is available:

try {
  require('some-optional-dependency');
} catch (ex) {
  // Ignore, or load polyfill, or ...
}

Because React Native's packager resolves require() calls during dependency resolution, it will require 'some-optional-dependency' to be present and resolvable. If this module will never be available to your React Native app, and you want the runtime exception occur so that the catch clause can do its thing, you can blacklist these dependencies from ever being resolved. Instead, those require() calls will be replaced with an exception being thrown:

{
  "throwForModules": [
    "some-optional-dependency"
  ]
}

Optional files

If the file that an import or require() call would resolve to is missing, it's usually up to node or the packager (e.g. webpack) to deal with that -- potentially creating the bundle would fail at build time rather than incurring an exception at runtime (which is what happens in node). To replace the import of an non-existent file or module with a runtime exception, use the following option:

{
  "throwForMissingFiles": [
    "/path/to/some/optional/configuration.json",
    "/path/to/build.artifact"
  ]
}

Keywords

FAQs

Package last updated on 08 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