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

@nexus-state/immer

v0.1.5

Published

> Immer integration with Nexus State — immutable updates with mutable syntax > > [![npm version](https://img.shields.io/npm/v/@nexus-state/immer)](https://www.npmjs.com/package/@nexus-state/immer) > [![Coverage for immer package](https://coveralls.io/repo

Readme

@nexus-state/immer

Immer integration with Nexus State — immutable updates with mutable syntax

npm version Coverage for immer package License

DocumentationRepository


📦 Installation

npm install @nexus-state/immer

Required:

npm install @nexus-state/core

🔗 See Also

Full ecosystem: Nexus State Packages


Description

The @nexus-state/immer package provides utilities for integrating Immer with Nexus State, enabling immutable state updates with mutable syntax. It simplifies working with deeply nested objects and arrays by allowing you to write code as if you were mutating data directly, while ensuring that new object references are created safely.

What is Immer?

Immer allows you to write mutating code that produces immutable updates under the hood. Instead of manually creating new objects using spread operators ({...prevState, field: newValue}), you can write code like:

draft.profile.name = "Jane";
draft.posts[0].tags.push("new-tag");

And Immer will handle creating new objects immutably.

Key Features

  • Immer Integration: Provides immerAtom and setImmer functions for seamless usage with Nexus State.
  • Simplified Immutability: Write mutable-style code that produces immutable updates.
  • Deep Nesting Support: Easy updates to deeply nested state structures.
  • Performance: Efficient object copying via Proxies and structural sharing.
  • Type-Safe: Full TypeScript support with proper typing.

Installation

npm install @nexus-state/immer

Usage Example

import { createStore } from "@nexus-state/core";
import { immerAtom, setImmer } from "@nexus-state/immer";

// Create a store instance
const store = createStore();

// Create an atom with Immer support
const userAtom = immerAtom(
  {
    profile: {
      name: "John",
      contacts: { email: "[email protected]" },
    },
    posts: [{ id: 1, title: "Hello World" }],
  },
  store,
);

// Update state using Immer-style draft mutations
setImmer(userAtom, (draft) => {
>
> [![Coverage for immer package](https://coveralls.io/repos/github/eustatos/nexus-state/badge.svg?branch=main&job_name=immer)](https://coveralls.io/github/eustatos/nexus-state?branch=main)
  draft.profile.name = "Jane";
  draft.profile.contacts.email = "[email protected]";
  draft.posts.push({ id: 2, title: "Second Post" });
});

API

immerAtom<T>(initialValue, store)

Creates an atom that integrates with Immer for immutable updates.

  • initialValue: The initial state value for the atom
  • store: The Nexus State store instance to bind the atom to
  • Returns: Atom<T> — an atom bound to the store

setImmer<T>(atom, updater)

Updates an atom's value using an Immer-style draft function.

  • atom: The atom to update
  • updater: A function that receives a draft of the current value and mutates it
  • No return value

Benefits

  • Mutable Syntax, Immutable Results: Write intuitive code that behaves immutably.
  • No Manual Spreading: Avoid verbose {...state, ...newData} patterns.
  • Nested Updates Made Easy: Update deeply nested properties without boilerplate.
  • Performance: Efficient updates with structural sharing.

License

MIT