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

babel-plugin-import-to-require

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-import-to-require

Translate import statements to require statements

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15K
decreased by-19.54%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-import-to-require

Remaps import statements to require() statements. This is mostly useful alongside later static analysis tools (like glslify), where Babel import inter-op can often make static analysis difficult or impossible.

In:

import foobar from 'foo';
console.log(foobar());

Out:

const foobar = require('foo');
console.log(foobar());

:warning: This only handles basic import specifiers (i.e. the above format), and does not support things like wildcard imports, destructuring, namespaces, etc. Feel free to submit a PR if you need this feature.

Installation

$ npm install babel-plugin-import-to-require

Usage

The modules option can be used to narrow down to a specific list of modules to remap, ignoring all other import statements. If no parameter is specified, all import statements will be remapped.

.babelrc

{
  "plugins": [
    [ "import-to-require", { "modules": [ "foo" ] } ]
  ]
}

Via CLI

$ babel --plugins import-to-require script.js

Via Node API

require('babel').transform('code', {
  plugins: [
    [ 'import-to-require' , { modules: [ 'foo' ] } ]
  ]
});

Keywords

FAQs

Package last updated on 21 Feb 2018

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