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

reatty

v1.0.1

Published

React/Redux/Jest/Webpack/Semantic.UI boilerplate/example.

Readme

Reatty

Out-of-box:

DEMO: You can find it here

But Reatty requires at least mock DB, so gh-pages demo doesn't work without mock data

David David Known Vulnerabilities Code Climate

What is it?

Simple, but robust boilerplate.

"Create-react-app/Next.js are better! Why you created this stuff?"

Yeah, I know, they are better :wink:
Personally, I spent more time on customizing Next.js than was spent on implementation of this starter.

I like Create-react-app and Next, but for me - these "template-killers" aren't always the best solution.

Why I need it?

Many templates currently aren't 100% ready - some setups have old dependencies versions (boilerplates with webpack v1.* is a good example), other templates are too small and you have to write setup code by yourself.

Also, this setup isn't a "template-killer", it's just a robust setup that works.

Pros:

  • You have already some code pre-written.
  • Code was written following React&Redux concepts (containers/components).
  • Latest dependencies.
  • Few webpack chunks + App is ready for offline.

Cons:

  • You have already some code pre-written. But you always can remove it :)
  • No SSR (currently).

Includes:

Usage

git clone https://github.com/Metnew/reatty.git reatty
cd reatty && rm -rf .git  
npm install

Run:

npm run dev # run app in dev mode
npm run db  # run mock db for app(from another process)

Build:

npm run build # build app

It generates dist folder.

Test:

npm run test # run tests with Jest

You can take a look at more advanced example of testing here.

Folder structure:

│ Reatty
├── common - Your App
│   └── actions - application actions
│   ├── api - Services and XHR utils(also custom form validation, see InputComponent from components/common)
│   ├── components - components according to "Redux philosophy"
        └── common - common components of App, currently only wrapper for Semantic <Input /> component
│   ├── config - frontend config depending on REACT_WEBPACK_ENV
│   ├── containers - containers according to "Redux philosophy"
│   ├── reducers - application reducers
│   ├── routing - application routing
│   ├── styles - styles folder with scss vars, mixins, etc.
│   ├── index.jsx - project entry
│   ├── index.html
├── db // mock db
├── static - static assets(imgs, media)
├── webpack_config - Webpack configuration scripts

Also:

PRs, questions and issues are welcome)

LICENSE

MIT