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

simple-react-alert

v1.1.2

Published

An easy to use alert component for react

Readme

simple-react-alert

Travis npm package Coveralls

simple-react-alert is an easy to use alert system for react.

https://www.npmjs.com/package/simple-react-alert

To install run

npm i simple-react-alert

To use this package, import the Alert component to the top level of your application, then import and call the openAlert() function from anywhere in the app. For instance, you could trigger the alert after an api call returns, after submitting a form, or when clicking a button.

The openAlert function takes three different parameters, but only message is required:

  openAlert({ message, type, duration })

The message parameter is the string of text to be rendered in the alert box, shown to your users, this needs to be added for each function call.

The default duration of an alert is 2500ms but can be overwritten with each different alert, allowing you to show alerts with lengthier messages for longer, or short ones for less. This parameter is optional and takes a number value. E.g 3000

The types of alert you can use are listed below, the default is 'info' but should normally be specified for each function call. The type changes the colour and the icon of the alert box. Default colours match the style of the alert box; red for danger, green for success, orange for warning and blue for information.

Types

  • type: 'success'
  • type: 'warning'
  • type: 'info'
  • type: 'danger'
openAlert({ message: 'Your changes have succesfully saved', type: 'success' });

Change colour

You can also update the colours for the different types of alert to match your own color scheme by adding your own custom choice to the top level component.

You can edit the colours by using the following props:

  • successColor
  • warningColor
  • infoColor
  • dangerColor
<Alert successColor: '#ffffff' />

This property accepts hex colors, and will default back to the original if presented with an incorrect value type.

Further custom styles

For more css customisations you can target these different elements in your own css.

  • .Alert-container (The div element which functions as the alert box)
  • .Alert-message-container (the span element which wraps the icon and message)
  • .Alert-text (the p element which displays the message)