ReactJS, “key” is the key to solve this unable to update issue
In the project I am working on, there is a poorly finished Address control from a library maintained by another team. The control manages its own address sta...
In the project I am working on, there is a poorly finished Address control from a library maintained by another team. The control manages its own address sta...
ReactJS is one of the most popular frontend libraries, but everything has its downside. In this post, I’d like to share some reasons why people might thumb-d...
```typescript type User = { name: string age?: number active?: boolean }
Simplifying Feature Management with Balanced SOLID Principles
```typescript function foo({ handler }: { handler: () => void }) { handler() return { bar() { return ‘the string bar’ }, } }
Almost all SaaS systems need to implement Feature Flags and Settings(or Configurations) somehow. When people talk about them, they can be mixed together. The...
```typescript type ComponentProps = React.HTMLProps
Git is easy to start with and hard to master. Over the years I have collected a short list of habits that keep a repository clean, keep the history readable,...
When working for a company or a serious side hustle, probably this should be done via a third party library like https://www.npmjs.com/package/nanoid. Howeve...
Javascript is weird when compared to other popular programming languages. If you search it on the Internet, there’re a lot of articles talking about the weir...