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

@pota/react-skeleton

v2.1.0

Published

<div align="center">The <b>de-facto React skeleton</b> for new projects.</div> <br />

Readme

react-skeleton downloads extends

Setup 🚀

You can create a new project using the @pota/create package.

npx @pota/create react my-react-app

Standards 📒

This project follows the MediaMonks Frontend Coding Standards

Project Structure ⛩️

source

src/components

The components folder follows atomic design guidelines, with a few additions:

| Folder | Description | Example | | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------- | | /atoms | The smallest unit, must be self contained and not dependant on any external modules. (types and configuration being the exception) | Icon, Paragraph, Heading | | /molecules | Must be restrained to only use atoms and minimal internal state. | Toggle | | /organisms | Generally reserved for complex state uses and must use atoms or molecules. | Form | | /layout | Components whose only function is taking in children and presenting them in a specific layout. Must not use atoms, molecules or organisms. | Carousel, Modal, Tabs | | /pages | Components which are used as pages. | Home, About | | /unlisted | Components which do not fall into any of the above categories. | App, global context providers |

src/config

The config folder is to be used to define any sort of configuration for styles, components or logic.

hidden TODOs

Features 🔋

Pota Commands

build - builds the source using webpack.

npm run build # or npx pota build

| Option | Type | Default | Description | | ----------------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | | analyze | {Boolean} | false | When enabled, will open a bundle report after bundling. | | cache | {Boolean} | true | Toggles webpack's caching behavior. | | image-compression | {Boolean} | true | Toggles image compression. | | mode | {development\|production} | production | Override webpack's mode. | | output | {String} | ./build | The build output directory. | | source-map | {false\|devtool} | source-map (production), eval-source-map (development) | Sets the style of source-map, for enhanced debugging. Disable or use faster options in you are having out of memory or other performance issues. | | public-path | {String} | / | The location of static assets on your production server. | | type-check | {Boolean} | true | When disabled, will ignore type related errors. | | versioning | {Boolean} | false | When enabled, will copy assets in ./static to a versioned directory in the output (e.g. build/version/v2/static/...). | | profile | {Boolean} | false | Toggles support for the React Devtools in production. |

dev - starts the development service using webpack-dev-server.

npm run dev # or npx pota dev

| Option | Type | Default | Description | | ----------------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | | cache | {Boolean} | true | Toggle webpack's caching behavior. | | https | {Boolean} | false | Run the development server with HTTPS. | | image-compression | {Boolean} | true | Toggles image compression. | | mode | {development\|production} | production | Override webpack's mode. | | source-map | {false\|devtool} | source-map (production), eval-source-map (development) | Sets the style of source-map, for enhanced debugging. Disable or use faster options in you are having out of memory or other performance issues. | | type-check | {Boolean} | true | Toggles checking for type related errors. |

hidden TODOs

Scripts

Non-Pota scripts defined in "scripts" of package.json and are runnable using npm run {script}

| Script | Description | | --------------------- | ----------------------------------------------------------------------------- | | postinstall | Run patch-package to patch faulty packages. | | build-storybook | Bundle stories for deployment. | | start-storybook | Start storybook's development server. | | plop | Generate a new component's source files. | | test | Run unit tests. | | fix | Executes all fix:* and format commands in sequence. | | **fix:eslint** | Executes eslint:lint and fixes fixable errors. | | **format** | Formats the source files using prettier. | | **lint** | Executes all lint:* commands in sequence. | | **lint:eslint** | Lints the source files using eslint. | | **rsync** | Synchronizes (uploads) dist/ files to a remote server. | | **typecheck** | Synchronously runs typecheck:mainandtypecheck:tools. | | **typecheck:main** | Checks for type errors and unused variables/types in the source directory. | | **typecheck:tools`** | Checks for type errors and unused variables/types of the various local tools. |

JavaScript / TypeScript

hidden TODOs

CSS

hidden TODOs

Images

hidden TODOs

Misc. Assets

hidden TODOs

Linting & Formatting

hidden TODOs

Deployment

hidden TODOs

Git

hidden TODOs

Storybook

hidden TODOs

Testing

hidden TODOs

Web Vitals

hidden TODOs

Routing

hidden TODOs

State Management

hidden TODOs

Continuous Integration / Continuous Deployment

Bitbucket

webpack-skeleton comes with bitbucket-pipelines.yml, pre-configured to run check-types, lint and test scripts.

hidden TODOs