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

@tanem/react-nprogress

Package Overview
Dependencies
Maintainers
1
Versions
212
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanem/react-nprogress

A React primitive for building slim progress bars inspired by Google, YouTube, and Medium.

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
78K
decreased by-1.79%
Maintainers
1
Weekly downloads
 
Created
Source

react-nprogress

npm version build status coverage status npm downloads

A React primitive for building slim progress bars inspired by Google, YouTube, and Medium.

Background

This is a React port of rstacruz's nifty nprogress module. It exposes an API that encapsulates the logic of nprogress and renders nothing, giving you complete control over rendering.

Basic Usage

Note: Container, Bar and Spinner are function components that you create. You're free to create and style whatever components suit your context. Refer to the Live Examples to see this approach in action.

import Bar from './Bar'
import Container from './Container'
import NProgress from '@tanem/react-nprogress';
import React from 'react'
import Spinner from './Spinner'
import { render } from 'react-dom'

render(
  <NProgress isAnimating>
    {({ isFinished, progress, animationDuration }) => (
      <Container isFinished={isFinished} animationDuration={animationDuration}>
        <Bar progress={progress} animationDuration={animationDuration} />
        <Spinner />
      </Container>
    )}
  </NProgress>,
  document.getElementById('root')
)

Live Examples

API

Props

  • animationDuration - Optional Number indicating the animation duration in ms. Defaults to 200.
  • incrementDuration - Optional Number indicating the length of time between progress bar increments in ms. Defaults to 800.
  • isAnimating - Optional Boolean indicating if the progress bar is animating. Defaults to false.
  • minimum - Optional Number between 0 and 1 indicating the minimum value of the progress bar. Defaults to 0.08.

Example

<NProgress
  animationDuration={300}
  incrementDuration={500}
  isAnimating
  minimum={0.1}
>
  {({ isFinished, progress, animationDuration }) => (
    <Container isFinished={isFinished} animationDuration={animationDuration}>
      <Bar progress={progress} animationDuration={animationDuration} />
      <Spinner />
    </Container>
  )}
</NProgress>

Installation

$ npm install @tanem/react-nprogress

There are also UMD builds available via unpkg:

For the non-minified development version, make sure you have already included:

For the minified production version, make sure you have already included:

License

MIT

Keywords

FAQs

Package last updated on 20 Oct 2018

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