惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
U
Unit 42
B
Blog RSS Feed
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
腾讯CDC
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - 聂微东
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta

Maggie Appleton

The Dark Forest and Generative AI One Developer, Two Dozen Agents, Zero Alignment Gas Town’s Agent Patterns, Design Bottlenecks, and Vibecoding at Scale January 2026 | Maggie Appleton A Treatise on AI Chatbots Undermining the Enlightenment A Brief History & Ethos of the Digital Garden Vibe Code is Legacy Code May 2025 | Maggie Appleton Home-Cooked Software and Barefoot Developers Statistically, When Will My Baby Be Born? Speculative Calendar Events ChatGPT Would be a Decent Policy Advisor March 2025 | Maggie Appleton The Expanding Dark Forest and Generative AI Humanity's Last Exam Squish Meets Structure Common Misconceptions in AI Undetected AI Exam Answers Unbaited Smidgeons Growing a Human: The First 30 Weeks How to Import Academic Papers from Zotero into Tana December 2024 | Maggie Appleton Aesthetic Command Lines with Hyper, Spaceship, and Oh My Zsh Leaving Elicit July 2024 | Maggie Appleton A Short History of Bi-Directional Links The Pattern Language of Project Xanadu Assumed Audiences Ambient Co-presence
Immutable Data with Immer and Personal Assistant Bots
2019-08-10 · via Maggie Appleton

Let’s talk about immutable data. With socks. And personal assistant bots. I know, you’re already so excited.

Immutability and state are two developer buzzwords it took me forever to “get.”

Their underlying meanings aren’t necessarily that complex. But it’s tough to fully comprehend what they mean, and why they’re important, until you see them in action.

State just means the way an application is at a single point in time.

For example, if we’ve typed “how does CSS grid work” into the search bar, and there are three checkboxes ticked, and we have a dropdown menu open that’s the current “state” of things. If we close the menu that’s a state change.

Behind the scenes in apps we have to account for every state an app could be in (which gets expontential very quicky). This is usually called “managing state” and appears to be a neverending problem

Immutable State is one approach to solving our complex state problem – it simply means making a second copy of things before you change them.

It’s the same as copying and pasting a new ImportantThing_Version2_Draft.md document before liberally changing enourmous chunks of it. Then when you realise your poor editing choices and want to go back to the original version, it’s there waiting for you.

Writing immutable code is a wildly popular concept in general. And a good idea when you don’t want to muck everything up.


Okay now you’re all caught up on the jargon. Lets get to some illustrated notes.

These are from a course Michel Weststrate made about their elegant new tool Immer – it helps handle manage immutable state in a sane way.

https://egghead.io/courses/immutable-javascript-data-structures-with-immer

Michel walks us through building a gifting app with React & Immer that seamlessly handles all the messy state work.

Immer is a small JS library that makes working with immutable state easy and enjoyable. It's like a small assistant that helps you make copies and edits to documents.

Immer's produce function does all the work - it takes a state object and runs a draft function telling the state how it should change.

The product function supports currying - which is when we nest functions inside others to make our code composable

We can easily use immer with other libraries like React and write callback functions using immer's produce function


CSS is awesome cup

Yes the cup in the illustration is based on this classic CSS one that I don’t own, but kind of want to.

Want more illustrated notes on web development?

Take a look at Testing Apps with Cypress

Testing Apps with Cypress

Illustrated notes on how to test web apps with Cypress , The JAMStack, Gatsby & Contentful

The JAMStack, Gatsby & Contentful

Illustrated notes on the JAMstack, Gatsby & Contentful
or A Fresh Serving of JavaScript ES2019

A Fresh Serving of JavaScript ES2019

Illustrated notes on the new language changes in JavaScript ES2019