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

rtk-quickstart

v1.0.2

Published

CLI to scaffold a production-ready React project with Redux Toolkit + RTK Query preconfigured

Readme

rtk-quickstart

npm version GitHub repo

GitHub: https://github.com/Dhruv-007/RTK-Query-Package · Documentation: README.md

Scaffold a production-ready React project with Redux Toolkit + RTK Query — in one command.

npx rtk-quickstart my-app

No more repetitive boilerplate. Get a clean store, base API, typed hooks, and scalable folder structure out of the box.


Quick Start

# JavaScript (default)
npx rtk-quickstart my-app

# TypeScript
npx rtk-quickstart my-app --typescript

# TypeScript + Auth module
npx rtk-quickstart my-app --typescript --auth

Then:

cd my-app
npm run dev

Your app opens at http://localhost:3000 with a working RTK Query demo fetching users from JSONPlaceholder.


CLI Options

| Flag | Description | | ----------------- | ------------------------------------------------------------------ | | --typescript | Use TypeScript template (aliased as --ts) | | --auth | Include auth module — token storage, auto headers, login/logout | | --skip-install | Skip npm install (useful in CI or monorepos) |


Generated Folder Structure

my-app/
├── index.html
├── package.json
├── vite.config.js          # or .ts with --typescript
├── .env.example
├── .gitignore
└── src/
    ├── main.jsx            # App entry with Provider + Store
    ├── App.jsx             # Demo component using RTK Query
    ├── index.css
    ├── app/
    │   └── store.js        # configureStore with middleware
    ├── services/
    │   ├── baseApi.js      # createApi with fetchBaseQuery + auth headers
    │   └── userApi.js      # Example API slice with injectEndpoints
    ├── hooks/
    │   └── reduxHooks.js   # Typed useAppDispatch & useAppSelector
    └── features/           # (with --auth flag)
        └── authSlice.js    # Token persistence, login/logout actions

With --auth, you also get services/authApi.js with login/register mutation endpoints.


What's Included

Store (src/app/store.js)

  • configureStore with RTK Query middleware
  • Redux DevTools enabled in development

Base API (src/services/baseApi.js)

  • createApi with fetchBaseQuery
  • Base URL from VITE_API_BASE_URL env variable
  • Auto-attaches Authorization: Bearer <token> from localStorage
  • Tag-based cache invalidation ready

Example API (src/services/userApi.js)

  • getUsers and getUserById query endpoints
  • Auto-generated hooks: useGetUsersQuery, useGetUserByIdQuery
  • Cache tags configured

Typed Hooks (src/hooks/reduxHooks.js)

  • useAppDispatch and useAppSelector — pre-typed for TypeScript projects

Auth Module (opt-in with --auth)

  • authSlicesetCredentials, logout actions, localStorage persistence
  • authApilogin and register mutation endpoints
  • Selectors: selectCurrentUser, selectIsAuthenticated

Adding a New API Slice

Create a new file in src/services/:

// src/services/postApi.js
import { baseApi } from "./baseApi";

export const postApi = baseApi.injectEndpoints({
  endpoints: (builder) => ({
    getPosts: builder.query({
      query: () => "/posts",
    }),
  }),
});

export const { useGetPostsQuery } = postApi;

Use it in any component — no extra store configuration needed.


Environment Variables

Copy .env.example to .env and set your API base URL:

VITE_API_BASE_URL=https://your-api.example.com

Tech Stack


Publishing (for maintainers)

npm login
npm publish

Author

Dhruv Johari — Frontend Engineer | React | RTK Query | Product Builder


License

MIT