16 articles

📰 Dev.to · 张一凡

Articles from Dev.to · 张一凡 · 16 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (11691) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
5 React State Management Libraries Compared: Which One Should You Choose?
Dev.to · 张一凡 2w ago
5 React State Management Libraries Compared: Which One Should You Choose?
A practical comparison of Redux, MobX, Zustand, Recoil, and the newcomer easy-model.
Why I Switched from MobX to easy-model (And Why You Might Too)
Dev.to · 张一凡 3w ago
Why I Switched from MobX to easy-model (And Why You Might Too)
MobX is great, but easy-model offers something different - explicit APIs, built-in IoC, and better TypeScript support.
I Built a React State Management Library that Combines the Best of Zustand and MobX
Dev.to · 张一凡 3w ago
I Built a React State Management Library that Combines the Best of Zustand and MobX
Meet easy-model - a class-based state management library with built-in IoC, deep watching, and history support.
Dependency Injection in React: A Practical Guide
Dev.to · 张一凡 3w ago
Dependency Injection in React: A Practical Guide
Bringing enterprise-grade architecture to frontend development What is Dependency...
Rethinking React State Management with easy-model
Dev.to · 张一凡 3w ago
Rethinking React State Management with easy-model
How I learned to stop worrying about Redux boilerplate and love class-based models The...
Getting started with easy-model (quick start guide)
Dev.to · 张一凡 3w ago
Getting started with easy-model (quick start guide)
TL;DR Install and write a model class. Use useModel to create/subscribe in React. Use provide for...
easy-model: model-first state with IoC and deep watching
Dev.to · 张一凡 3w ago
easy-model: model-first state with IoC and deep watching
TL;DR Class-based models: fields are state, methods are logic. Hooks-first API: useModel,...
Applying easy-model in Data Visualization Dashboards
Dev.to · 张一凡 4w ago
Applying easy-model in Data Visualization Dashboards
Data visualization dashboards need to handle large amounts of data, chart configurations, user...
Practical Application of easy-model in Task Management Apps
Dev.to · 张一凡 4w ago
Practical Application of easy-model in Task Management Apps
Task management applications like Todoist or Trello need to handle task states, list management, user...
Domain-Driven Development with easy-model
Dev.to · 张一凡 1mo ago
Domain-Driven Development with easy-model
In e-commerce application development, modules like product management, shopping carts, and order...
easy-model: The Perfect Fit for Domain-Driven Development
Dev.to · 张一凡 1mo ago
easy-model: The Perfect Fit for Domain-Driven Development
In modern frontend development, Domain-Driven Design (DDD) is gaining traction as a preferred approach. The easy-model framework, with its unique model-driven a
easy-model in Action: Cross-Component Communication, Watching, and Async Loading – All in One Library
Dev.to · 张一凡 1mo ago
easy-model in Action: Cross-Component Communication, Watching, and Async Loading – All in One Library
Hey guys, state management in React can be a pain: Redux is heavy, Zustand too light, MobX has a...