Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A very fast and lightweight Typescript library to create immutable states with a mutable syntax

License

NotificationsYou must be signed in to change notification settings

giusepperaso/structura.js

Repository files navigation

structura

Structura.js is a very fast and lightweight Typescript library which allows to create immutable states with a mutable syntax. It is based on the idea ofstructural sharing.

The library is very similar toImmer.js, but it has some advantages over it:

  • up to ~10x more performant, even faster thanImmutable most of the time
  • freezes the object only at compile time by leveraging Typescript, while other libraries freeze the object at runtime with Object.freeze, which may be slow expecially for nested objects
  • circular and multiple references are supported
  • can return and modify the draft at the same time
  • flexibility in the return type of the producer
  • no need to toggle on/off features (with someexceptions)
  • does support transpositions and moves of portions of the draft

The library is actually in alpha state. It is probably already usable (many complex scenarios are already covered by tests), but the APIs and the types could change in the future.

BREAKING CHANGES

  • v.0.9.0-alpha: produceWithStandardPatches was removed from the library; useenableStandardPatches(true) instead
  • v.0.8.0-alpha: patches use 'op' instead of 'action' as key for the operation; they can also be passed in the JSON format
  • v.0.6.0-alpha: revert back to accept primitives, just don't draft them; also accept the in operator
  • v.0.5.0-alpha: don't accept primitive types at runtime
  • v.0.4.0-alpha: primitive types are not accepted anymore in the produce function

About

A very fast and lightweight Typescript library to create immutable states with a mutable syntax

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors5


[8]ページ先頭

©2009-2025 Movatter.jp