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

@ngstato/angular

v0.4.2

Published

ngStato — Angular adapter with native Signals

Readme

@ngstato/angular

NgRx requires 9 concepts for an async action. ngStato requires 1.

Angular Signals. Dependency injection. Built-in DevTools. ~1 KB.

npm Angular gzip license

Documentation · Angular Guide · API Reference


Install

npm install @ngstato/core @ngstato/angular

Full working example — 3 files

1. Config — one-time setup:

// app.config.ts
provideStato({
  http: { baseUrl: 'https://api.example.com' },
  devtools: isDevMode()
})

2. Store — state + actions + selectors in one object:

// users.store.ts
import { createStore, http, connectDevTools }  from '@ngstato/core'
import { StatoStore }                          from '@ngstato/angular'

export const UsersStore = StatoStore(() => {
  const store = createStore({
    users:   [] as User[],
    loading: false,
    error:   null as string | null,

    selectors: {
      total:  (s) => s.users.length,
      admins: (s) => s.users.filter(u => u.role === 'admin')
    },

    actions: {
      async loadUsers(state) {
        state.loading = true
        state.users   = await http.get('/users')
        state.loading = false
      },

      async deleteUser(state, id: string) {
        await http.delete(`/users/${id}`)
        state.users = state.users.filter(u => u.id !== id)
      }
    },

    hooks: { onInit: (s) => s.loadUsers() }
  })

  connectDevTools(store, 'Users')
  return store
})

3. Component — everything is a Signal:

// users.component.ts
@Component({
  template: `
    @if (store.loading()) { <spinner /> }
    
    <h2>Users ({{ store.total() }})</h2>
    
    @for (user of store.users(); track user.id) {
      <div>
        {{ user.name }}
        <button (click)="store.deleteUser(user.id)">×</button>
      </div>
    }
  `
})
export class UsersComponent {
  store = injectStore(UsersStore)
}

That's the entire pattern. No reducers, no effects class, no action creators, no selectors file.


What you get

| What you define | What Angular gets | |:--|:--| | users: [] (state) | store.users()WritableSignal | | total: (s) => s.users.length (selector) | store.total()computed Signal (memoized) | | async loadUsers(state) { ... } (action) | store.loadUsers()Promise<void> |

All Signals update automatically. Zero manual subscriptions.


DevTools — zero install, all browsers

<stato-devtools />
  • Draggable, resizable, minimizable panel
  • Action history with timestamps and duration
  • State diffs — before/after for every action
  • Current state explorer
  • Works on mobile
  • Impossible to enable in production (isDevMode())

| | NgRx | ngStato | |:--|:--|:--| | Setup | Chrome extension | <stato-devtools /> | | Mobile | ❌ | ✅ | | Prod safety | Manual | Automatic |


Why teams switch

| | NgRx v21 | @ngstato | |:--|:--|:--| | Bundle | ~50 KB gzip | ~4 KB (core + angular) | | Async action | rxMethod + pipe + tap + switchMap + from + tapResponse + patchState | async/await | | CRUD store | ~90 lines, 3+ files | ~45 lines, 1 file | | DevTools | Chrome only | All browsers + mobile | | Entity adapter | ✅ | ✅ | | Feature composition | ✅ | ✅ mergeFeatures() | | Concurrency | RxJS operators | ✅ exclusive queued abortable | | Testing | provideMockStore | ✅ createMockStore() | | Persistence | Custom meta-reducers | ✅ withPersist() |


📖 Documentation

becher.github.io/ngStato

Start in 5 min · Angular guide · Testing · CRUD recipe · NgRx migration · API

License

MIT