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

tempest.js

v1.5.1

Published

The brand new framework based on React + Redux and also our best practices.

Readme

tempest.js

The brand new framework based on React + Redux and also our best practices.


View

Problem

Build rich user interfaces with a component-based JavaScript library.

Solution

React

Reason

  • React is only a view library and we can gradually introduce it to an existing project. Even if you work on a few years old legacy application you can still design a new screen using it. It's not all or nothing
  • React works with ES5/ES6/ES7
  • React is an innovative place
  • JSX - Mix up HTML and JavaScript
  • React has a simple API
  • Lightweight Components => Best Practices keep them lightweight and small yet reusable, composeable and functional without any side effects
  • Unidirectional Data Flow
  • Works great witht Redux which could help you structuring and managing your web app state
  • Close to JavaScript
  • Functional Programming
  • Community

Alternatives

AngularJS, Inferno, Preact, Vue.js, ...

Router (URL <-> Component)

Problem

Need to navigate between pages without refresh the whole pages.(SPA)

Solution

react-router@v4

Reason

React Router is a declarative routing for React and it is also a collection of navigational components that compose naturally with your application. Whether you want to have bookmarkable URLs for your web app or a composable way to navigate in React Native, React Router works wherever React is rendering.

Alternatives

director

State Management

Problem

Needs to structure and manage more complex Web App state than ever before. Mutable state is particularly troublesome.

  • Where do I keep all the data regarding my application along its lifetime?
  • How do I handle modification of such data?
  • How do I propagate modifications to all parts of my application?

Solution

Redux

Reason

Redux will solve the problems mentiond and ties these all together for you, to sum up, Redux will provide you:

  • a place to put your application state
  • a mechanism to dispatch actions to modifiers of your application state, AKA reducers
  • a mechanism to subscribe to state updates

Alternatives

Mobx

Notes

You don't always need Redux and it's all depending on your requirements.

Side effects(Async Actions) handle

Problem

Need to handle side effects or asynchronous actions in a redux application.

Solution

Redux Promise Middelware

Reason

Redux Promise Middleware is a lightweight library for resolving and rejecting promises with conditional optimistic updates.

Redux promise middleware enables robust handling of async code in Redux. The middleware enables optimistic updates and dispatches pending, fulfilled and rejected actions. It can be combined with redux-thunk to chain async actions.

Alternatives

redux-thunk, redux-saga, redux-observable, redux-loop, redux-pack, etc.

Web API Utils

Problem

Need to send AJAX request in node & browser env.

Solution

isomorphic-fetch

Reason

isomorphic-fetch is a Fetch lib for node and Browserify. Built on top of GitHub's WHATWG Fetch polyfill.

Alternatives

axios, reqwest, etc.

Service plugins

Loading

Error

Confirmation

...