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

babel-plugin-module-alias

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-module-alias

Babel plugin to rewrite the path in require() and ES6 import

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4K
decreased by-23.43%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-module-alias Build Status

A babel plugin to rewrite (map, alias) directories as different directories during the Babel process. It's particularly useful when you have files you don't want to use with relative paths (especially in big projects).

Compatible Babel 6.x

Description

Instead of having long relative paths inside your code, use custom names to easily import your code.

// Instead of using this
import MyUtilFn from '../../../../utils/MyUtilFn';
// or this (because in another file for example)
import MyUtilFn from '../utils/MyUtilFn'

// always use this:
import MyUtilFn from 'utils/MyUtilFn';

Note: It also works with the require statement (var MyUtilFn = require('utils/MyUtilFn');).

Usage

Install the plugin

$ npm install --save babel babel-plugin-module-alias

Specify the plugin in your .babelrc and specify your custom alias mapping

Then, the recommended way of using it is by using the file .babelrc to setup the configuration for Babel.

{
  "plugins": [
    ["babel-plugin-module-alias", [
      { "src": "./src/utils", "expose": "utils" },
      { "src": "./src/components", "expose": "components" }
    ]]
  ]
}

License

MIT, see LICENSE.md for details.

Keywords

FAQs

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