GithubHelp home page GithubHelp logo

Comments (2)

alexander-akait avatar alexander-akait commented on July 28, 2024

@emirdeliz can you provide minimum reproducible test repo, thanks!

from bundle-loader.

emirdeliz avatar emirdeliz commented on July 28, 2024

@evilebottnawi of course, see the code below:

var React = require('react');
var ReactDOM = require('react-dom');

/* Import from node_modules without bundle-loader */
var bundleTest = require('react-bundle-loader-test/index.js');

/* works fine! */
bundleTest();

/*  Import from node_modules with bundle-loader */
var bundleTest_lazy = require('bundle-loader?lazy!react-bundle-loader-test/index.js');

/* Uncaught TypeError: cb is not a function  */
bundleTest_lazy();

/*
  *** content of react-bundle-loader-test/index.js in node_modules ***

  module.exports = function() {
    console.log('Test react-bundle-loader-test ...');
  }
*/

ReactDOM.render(<h1>Hello React!</h1>, document.getElementById('root'));

See attached project
example.zip
react-bundle-loader-test.zip

I'm using two projects in my real case. One called widgets and another main project. The main project contains widgets as a dependency, so I need to load the widgets as asynchronous.

from bundle-loader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.