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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-browser-support-copy

v1.6.0

Published

A React component indicating whether or not your application supports the detected browser ( & semantic version ).

Readme

react-browser-support-copy

Build Status semantic-release Commitizen friendly

Installation

npm install react-browser-support-copy --save-dev

Component

This component displays a message, if the current browser is not supported. This is determined using a list of supportedBrowsers ( a javascript object). Supported Browsers are specified as an Object to the list prop of <BrowserSupport supported={minBrowserVersions}>.

API

| Name | Types | Default | Description | |---|---|---|---| | config | object | undefined | Minimum browsers version | | showDownloadLinks | bool | false | Show suggested current browser download link | | className | | | For custom content or styles | | styles | | | For custom styles | | unsupportedComponent | | | This is required for Higher Order Component | | appComponent | | | This is for higher component method which render your whole app | | showBoth | bool | false | This is for higher component method which show both unsupported component and normally for app component |

Note: unsupportedComponent prop will disable the following prop showDownloadLinks, style and className

Basic

You can use the default <BrowserSupport /> component.

import React from 'react'
import BrowserSupport from 'react-browser-support-copy'

const minBrowserVersions = {
    'ios-webview': '605',
    chrome: '60',
    crios: '60',
    edge: '13',
    facebook: '188',
    firefox: '60',
    fxios: '12',
    ie: '10',
    ios: '10',
    opera: '10',
    safari: '10'
}

export default class MyComponent extends React.Component {
    componentDidMount() {
        this.setState({ browser: detectBrowser() })
    }
    render() {
        return (
            //...
            <BrowserSupport config={minBrowserVersions}/>
            //...
        )
    }
}

Custom

You can apply your own style, className & children as props to the component, and it will use those in place of the defaults.

render() {
    return this.state ? (
        <div>
        {/* With Custom Content */}
        <BrowserSupport
            config={minBrowserVersions}
            className='custom-warning-style'
        />

        {/* With Custom Content & Browser Version, etc. */}
        <BrowserSupport
            config={minBrowserVersions}
            style={yourCustomStyles}>
            <b>
                {this.state.browser.name} (version: {this.state.browser.version}) unsupported
            </b> 
            <div>
                oh my goodness, we don't seem to support your browser 😳
            </div>
            <div style={{display: 'flex', flexDirection: 'column', marginTop: '1em'}}>
                <a href='https://www.google.com/chrome/browser/desktop/index.html'>Download Chrome</a>
                <a href='https://www.mozilla.org/en-US/firefox/new/'>Download Firefox</a>
                <a href='https://safari.en.softonic.com/mac/download'>Download Safari</a>
            </div>
        </BrowserSupport>
    </div>
    ) : null
}

NOTE: If you are using chrome, you can test this with the User-Agent Switcher for Chrome extension.


Higher Order Component

This is a higher order component which wraps your app and detect if your browser is supported or not. This will not allow users to browse your app if their browser is unsupported.

/**
*
* App
*
*/

import React from 'react'
import BrowserCheck from 'components/BrowserCheck'

export function App () {
  return (
    <div>
      My Main App
    </div>
  )
}

export default BrowserCheck(App)
/**
*
* BrowserCheck
*
*/

import React from 'react'
import BrowserSupport, { highOrderComponent } from 'react-browser-support-copy'

export default function BrowserCheck (Component) {
    const TestComponent = (props) => {
        console.log('props', props)
        return (
            <div>My Custom Unsupported Component</div>
        )
    }

  class BrowserCheckComponent extends React.Component {
    state = {
      browser: {}
    }

    handleScanBrowser= data => this.setState({browser: data})

    render () {
      const { supported } = this.state.browser
      const minBrowserVersion = {
        'ios-webview': '605',
        chrome: '60',
        crios: '60',
        edge: '13',
        facebook: '188',
        firefox: '60',
        fxios: '12',
        ie: '10',
        ios: '10',
        opera: '10',
        safari: '10'
      }

      return (
            <div>
                <BrowserSupport
                    config={minBrowserVersions}
                    showDownloadLinks // this will show suggested download links for user's browser
                    unsupportedComponent={(props) => <TestComponent key='component' {...props} />} // this will show your custom component if the browser is unsupported
                    appComponent={'<Component />'} // this is for higher component order method only
                    showBoth // this will show both unsupported and your app component
                />
            </div>
        )
    }
  }

  return BrowserCheckComponent
}

Acknowledgement: This package is originally developed by Bilo Lwabona