npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2025 – Pkg Stats / Ryan Hefner

react-dynamic-import

v1.1.5

Published

Dynamically load and render any react module(Component or an HOC) using dynamic import πŸŽ‰

Downloads

4,589

Readme

react-dynamic-import

⚠️ You might not need this library. Checkout React.lazy and see if it fits your use case.

Dynamically load and render any react module(Component or an HOC) using dynamic import πŸŽ‰

Tiny(around 1.16kb gzip) dynamic module loader and renderer.

πŸ‘‰ DEMO

⚠️ Hooks only(requires react 16.8.0 or above), use v1.0.4 if you want older react versions support

Dynamic loading of component is already supported in React using React.lazy and Suspense, But, dynamic loading of HOC is tricky and is unsupported in React.

Should work with any bundler(eg: webpack, parcel etc) which supports dynamic import ✨

MIT Licence Open Source Love Build Status npm version GitHub version Greenkeeper badge

Table of Contents

Install

NPM

npm install react-dynamic-import

Yarn

yarn add react-dynamic-import

UMD build

<script src="https://unpkg.com/react-dynamic-import/dist/react-dynamic-import.umd.js"></script>

Basic usage

  1. Component

    • Folder structure

      |_ realComponent.js
      |_ container.js <-- working file
    • Usage

      // Import library
      import ReactDynamicImport from "react-dynamic-import";
      // or const ReactDynamicImport = require('react-dynamic-import');
      
      // Define dynamic import loader function
      const loader = () => import(`./realComponent.js`);
      
      /**
       * Use dynamic module and lazy fetch component
       *
       * Make sure to use it outside render method,
       * else new component is rendered in each render
       *
       * You can choose to show a placeholder and render
       * error component in case of error, check API section for more
       */
      const RealComponent = ReactDynamicImport({ loader });
      
      class Container extends React.component {
        render() {
          /**
           * This component is dynamically fetched and rendered
           * on first usage/render
           */
          return <RealComponent />;
        }
      }
  2. HOC

    • Folder structure

      |_ realComponent.js <-- Real component to wrap in HOC
      |_ withHOC.js <-- HOC
      |_ container.js <-- working file
    • Usage

      // Import library
      import ReactDynamicImport from "react-dynamic-import";
      // or const ReactDynamicImport = require('react-dynamic-import');
      import RealComponent from "./realComponent.js";
      
      // Define dynamic import loader function
      const loader = () => import(`./withHOC.js`);
      
      /**
       * Use dynamic module and lazy fetch HOC
       *
       * Make sure to use it outside render method,
       * else new component is rendered in each render
       *
       * You can choose to show a placeholder and render error
       * component in case of error, check API section for more
       */
      const DynamicHOC = ReactDynamicImport({ loader, isHOC: true });
      const WrappedComponent = DynamicHOC(RealComponent);
      
      class Container extends React.component {
        render() {
          /**
           * The actual HOC is lazy loaded and executed,
           * which in turn renders the actual component lazily
           */
          return <WrappedComponent />;
        }
      }

Advanced usage

  1. Component

    • Folder structure

      |_ dynamic
      |  |_ realComponent-en.js
      |  |_ realComponent-eu.js
      |  |_ realComponent-kn.js
      |_ container.js <-- working file
    • Usage

      // Import library
      import ReactDynamicImport from "react-dynamic-import";
      // or const ReactDynamicImport = require('react-dynamic-import');
      
      /**
       * Define dynamic import loader function
       *
       * This loads specific module from many available
       * modules in the directory, using given module name
       */
      const loader = f => import(`./dynamic/${f}.js`);
      
      // Use dynamic module and lazy fetch component
      class Container extends React.component {
        constructor(props) {
          super(props);
      
          /**
           * Make sure to use it outside render method, else
           * new component is rendered in each render
           *
           * You can choose to show a placeholder and render error
           * component in case of error, check API section for more
           *
           * This loads different module when different language
           * configuration is passed
           */
          this.RealComponent = ReactDynamicImport({
            name: `realComponent-${props.lang || "en"}`,
            loader
          });
        }
      
        render() {
          const { RealComponent } = this;
      
          /**
           * This component is dynamically fetched and rendered
           * on first usage/render
           */
          return <RealComponent />;
        }
      }
  2. HOC

    • Folder structure

      |_ dynamic <-- Dynamic HOC's
      |  |_ withHOC-en.js
      |  |_ withHOC-eu.js
      |  |_ withHOC-kn.js
      |_ realComponent.js <-- Real component to wrap in HOC
      |_ container.js <-- working file
    • Usage

      // Import library
      import ReactDynamicImport from "react-dynamic-import";
      // or const ReactDynamicImport = require('react-dynamic-import');
      import RealComponent from "./realComponent.js";
      
      /**
       * Define dynamic import loader function
       *
       * This loads specific module from many available
       * modules in the directory, using given module name
       */
      const loader = f => import(`./dynamic/${f}.js`);
      
      // Use dynamic module and lazy fetch component
      class Container extends React.component {
        constructor(props) {
          super(props);
      
          /**
           * Make sure to use it outside render method, else
           * new component is rendered in each render
           *
           * You can choose to show a placeholder and render error
           * component in case of error, check API section for more
           *
           * This loads different module when different language
           * configuration is passed
           */
          const DynamicHOC = ReactDynamicImport({
            name: `withHOC-${props.lang || "en"}`,
            loader,
            isHOC: true
          });
          this.WrappedComponent = DynamicHOC(RealComponent);
        }
      
        render() {
          const { WrappedComponent } = this;
      
          /**
           * The actual HOC is lazy loaded and executed,
           * which in turn renders the actual component lazily
           */
          return <WrappedComponent />;
        }
      }

Checkout API for more info.

API

Contribute

Thanks for taking time to contribute, please read docs and checkout src to understand how things work.

Reporting Issues

Found a problem? Want a new feature? First of all see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.

Submitting pull requests

Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.

  • Fork it!
  • Clone your fork: git clone https://github.com/<your-username>/react-dynamic-import
  • Navigate to the newly cloned directory: cd react-dynamic-import
  • Create a new branch for the new feature: git checkout -b my-new-feature
  • Install the tools necessary for development: yarn
  • Make your changes.
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request with full remarks documenting your changes

TODO

  • [ ] Test cases

License

MIT License Β© Ganapati V S