import a module from node_modules with babel but failed
Asked Answered
H

3

18

I wrote a module with es6 and publish to the npm, I want to use it in another project, so I type like this:

import {ActionButton} from 'rcomponents'

But it didn't work:

D:\github\blog\node_modules\rcomponents\src\actionButton.jsx:1
(function (exports, require, module, __filename, __dirname) { import React fro
                                                              ^^^^^^
SyntaxError: Unexpected reserved word
    at exports.runInThisContext (vm.js:73:16)
    at Module._compile (module.js:443:25)
    at Module._extensions..js (module.js:478:10)
    at Object.require.extensions.(anonymous function) [as .jsx] (D:\github\blog\
node_modules\babel\node_modules\babel-core\lib\api\register\node.js:214:7)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at D:\github\blog\node_modules\rcomponents\src\index.js:3:19
    at Object.<anonymous> (D:\github\blog\node_modules\rcomponents\src\index.js:
7:3)

Here is my js loader configuration in webpack:

{ test: /\.jsx?$/, loader: `babel?cacheDirectory=${babelCache}` }

When I try to import a module which is not from node_modules, babel works good. But import a module from node_modules, babel seems not work?

Harden answered 5/8, 2015 at 2:46 Comment(0)
P
25

See the babel docs:

NOTE: By default all requires to node_modules will be ignored. You can override this by passing an ignore regex.

Generally the expectation is that modules in node_modules will already have been transpiled ahead of time, so they are not processed by Babel. If you will not be doing that, then you need to tell it what files it can process. ignore allows that.

require("babel/register")({
    // Ignore everything in node_modules except node_modules/rcomponents.
    ignore: /node_modules\/(?!rcomponents)/
});
Patman answered 5/8, 2015 at 2:56 Comment(13)
In case you want to use the same approach with babel-node you can do babel-node --ignore '/node_modules/(?!my_module1|my_module2)' script.jsFrag
This is not a suitable answer for Babel 6, I've run into a similar situation and cannot seem to find any way to transpile modules from a node module. Just as an addendum to those still looking for a solution in Babel 6.Avina
I agree, I'm unable to compile node_modules module too with babel 6Bergmans
Feel free to drop by Babel's support channel on Slack if you have a specific reproducible example. This should work in Babel 6 though.Patman
phabricator.babeljs.io/T7008 and phabricator.babeljs.io/T7016 I think this is a temporary bugBergmans
@Bergmans My answer is about babel/register so it is correct. If you're using some other approach like the CLI, then yes this may not work.Patman
@Patman could you take a look at #35041478 ?Proponent
I can confirm this works for me and I am using babel 6.Eldoneldora
Those babel issues have migrated to GitHub, they're now T7008 and T7016.Liberty
I've created this tool to solve this problem: github.com/oztune/babel-register-deepHatch
Where is that "require" supposed to go? Can I add the setting for it in .babelrc.js?Balance
@Balance It needs to run as part of the application code, and it needs to be in a file the loads before any file container code that needs to be compiled, so you could have a root file that loads babel and then require("./app.js"); after Babel to run your application code.Patman
I see. Thanks for pointing that out. I see now I can’t simply add this to my config, unfortunately.Balance
L
4

Generally, packages uploaded to npm should be precompiled, so users receive normal JS and don't require a build step. Use npm prepublish for this.

However, if you're using webpack, you can specify an exclude function in your webpack configuration (see the webpack docs):

module: {
  loaders: [{
    test: /.jsx?$/,
    loader: 'babel-loader',
    exclude(file) {
      if (file.startsWith(__dirname + '/node_modules/this-package-is-es6')) {
        return false;
      }
      return file.startsWith(__dirname + '/node_modules');
    },

If you're using babel directly, you can write a similar ignore function in the require hook.

Liberty answered 19/9, 2016 at 13:54 Comment(1)
> If you're using babel directly, you can write a similar ignore function in the require hook. Where does this go though? Where do you add the require('@babel/register') statement? In each file that uses an ES6 module?Cocainism
C
1

You can use https://www.npmjs.com/package/babel-node-modules for this case

npm install --save-dev babel-node-modules
require('babel-node-modules')([
  'helloworld' // add an array of module names here 
]);

and then it compiles listed modules as other files

Cultch answered 16/8, 2017 at 18:38 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.