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

react-dom-polyfill

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

react-dom-polyfill

Publish React libs that work with all React versions (0.12+)

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54
decreased by-22.86%
Maintainers
1
Weekly downloads
 
Created
Source

react-dom-polyfill

Publish React libs that work with almost all React versions.

Considering the cost of upgrading in big orgs, older versions of React (<0.14, pre ReactDOM) are still used in large codebases. React DOM Polyfill allows you to publish libs that work both with latest React and older versions (starting with 0.12), by proxying how your lib interacts with DOM in React.

Usage:

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

// ES6
import React from 'react';
import reactDOMPolyfill from 'react-dom-polyfill';

const ReactDOM = reactDOMPolyfill(React);

Notes:

  • Also update your React/ReactDOM peer dependencies to make your published lib compatible with all React versions. The latter should be missing (and thus optional). This is a rough example:

    "peerDependencies": {
      "react": ">=0.12 <16"
    }
    
  • Even though calling findDOMNode on DOM element refs is not required in newer versions of React, you must always do it to account for older Reacts. This makes this polyfill somewhat special. E.g.

    // Polyfill will simply return this.refs.searchInput with newer React versions,
    // but will call this.refs.searchInput.getDOMNode() with older versions
    ReactDOM.findDOMNode(this.refs.searchInput)
    
  • Make sure you have the browserify-optional transform installed in your devDependencies when building via Browserify.

FAQs

Package last updated on 04 Nov 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