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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-redux-starter-app

v0.1.0

Published

Starter app with React, Redux, Webpack, CSS Modules, API calls etc.

Readme

Build Status

React Redux Starter App

This app is intended as an exemplar of how we like to build React apps. You can clone this, and start the app to see

It is built off the awesome React Redux Starter Kit, but unlike the starter kit, this repo is intended to be very opinionated.

We'll explain all our choices though and if you don't like them, just swap them out for something else!

What's Included?

  • React Redux, React Router (obviously)
  • Webpack & Babel (Un-changed from the starter kit, so all the same tasks work. See README-redux.md)
  • React Storybook - Separate your presentational components from your containers, then view your presentational components individually in an this cookbook-style app.
  • CSS Modules with SASS
  • Responsive grids with flex, via Bootstrap 4 - We use Bootstrap Loader to load only the normalize.css reset file, and the responsive grid classes. All other CSS should be written in your own CSS modules, but the grid classes are too handy not to use.

Setup Instructions

$ git clone https://github.com/DeloitteDigitalUK/react-redux-starter-app.git
$ cd react-redux-starter-app
$ npm install                   # Install project dependencies
$ npm start                     # Compile and launch

Common commands:

|npm run <script>|Description| |------------------|-----------| |start|Serves your app at localhost:3000. HMR will be enabled in development.| |storybook|Launches React Storybook at localhost:9001, with HMR enabled.| |compile|Compiles the application to disk (~/dist by default).| |dev|Same as npm start, but enables nodemon for the server as well.| |dev:no-debug|Same as npm run dev but disables devtool instrumentation.| |test|Runs unit tests with Karma and generates a coverage report.| |test:dev|Runs Karma and watches for changes to re-run tests; does not generate coverage reports.| |deploy|Runs linter, tests, and then, on success, compiles your application to disk.| |deploy:dev|Same as deploy but overrides NODE_ENV to "development".| |deploy:prod|Same as deploy but overrides NODE_ENV to "production".| |lint|Lint all .js files.| |lint:fix|Lint and fix all .js files. Read more on this.|

Bootstrap

We deliberately use as little of Bootstrap as possible. The grid functions and normalize.css are handy, but other than that, we'd rather write CSS modules with no outside dependency.

If you would like to use more of Bootstrap, edit the .bootstraprc file and enable the relevant modules.

If you want to enable any of the JavaScript features, look at Bootstrap Loader's setup instructions for some extra steps to take.