CodeSampleX

示例

nanostores 1.5.0: Handle nanostores 1.5 equality semantics via Object.is and eq/eqKey, error containment in notification queues, effect lifecycle, reverse onSet middleware pipelines, and batched debouncing across version boundaries

已验证示例 — npm nanostores 1.5.0: Handle nanostores 1.5 equality semantics via Object.is and eq/eqKey, error containment in notification queues, effect lifecycle…

sha256:434dd87ea4af4506d9ea658ce329d308c7228e52b17b4c3cc5124ebc6b94639d

本网络只提供一件事:能构建的样本。它在沙箱中运行并保留签名回执。它不评级、不担保——同样的代码能否在你的环境构建,它没有测量过。 提交了通过的契约回执的不同签名密钥数量。为 1 表示只有作者;大于 1 表示还有其他人构建过。密钥是自行生成的,背后没有注册身份,因此计的是密钥而非人。 MIT-0

执行证据

声明的环境与签名的运行分开呈现,你可以看到这个样本究竟运行了什么、在哪里运行。

证据依据
签名契约通过
验证回执
2
构建过它的签名密钥
2
声明的环境 node linux x64 node node npm

验证运行环境

环境 契约 阶段 运行日期
node 22 · linux alpine/x64 · docker ed25519:d91480838ac982c9 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1
2026-08-16
node 22 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1
2026-08-18

案例

HOW
目标
Handle nanostores 1.5 equality semantics via Object.is and eq/eqKey, error containment in notification queues, effect lifecycle, reverse onSet middleware pipelines, and batched debouncing across version boundaries
符号
  • nanostores.atom
  • nanostores.map
  • nanostores.computed
  • nanostores.batched
  • nanostores.effect
  • nanostores.onSet
  • nanostores.onNotify
  • nanostores.onStart
  • nanostores.onStop
  • nanostores.onMount
  • nanostores.listenKeys
  • nanostores.subscribeKeys
  • nanostores.mapCreator
  • nanostores.getKey
  • nanostores.setByKey
  • nanostores.setPath
  • nanostores.cleanStores
  • nanostores.STORE_UNMOUNT_DELAY
  • Store.eq
  • Store.eqKey
  • Store.listen
  • Store.subscribe
  • Store.set
  • Store.setKey
  • Store.get
  • Store.value
  • Store.lc
环境
node
创建时间
2026-08-16T06:22:11Z

契约

  1. assert setting NaN on an atom holding NaN is a no-op under Object.is and triggers zero notifications, whereas strict inequality (!==) in earlier versions triggered notifications
  2. assert setting -0 on an atom holding 0 notifies listeners because Object.is(0, -0) is false, whereas strict equality (===) treated them as identical
  3. assert overriding $atom.eq allows custom equality functions to suppress listener notifications and keep previous object references when values are semantically identical
  4. assert map.eqKey compares existing and incoming field values with Object.is(prev, next, key), skipping object cloning and listener notification when values match
  5. assert an uncaught error thrown inside one listener during notify does not abort the notification loop: all subsequent listeners in the queue still execute before the error is rethrown
  6. assert effect runs immediately upon registration with unpacked positional arguments, mounts all passed stores by incrementing their listener counts, and executes cleanup functions before re-runs and on disposal
  7. assert onSet interceptors execute in reverse registration order (reduceRight) and pass a mutable shared context across interceptors
  8. assert calling abort() inside an onSet interceptor halts the mutation before store value update and notifies zero listeners
  9. assert onNotify interceptors can abort listener notifications while keeping the store value update intact
  10. assert onStart fires synchronously upon first subscription, onStop fires synchronously upon the last unbind, whereas onMount unmount cleanup is deferred by STORE_UNMOUNT_DELAY (1000ms)
  11. assert batched defers recomputations across rapid dependency updates via timer debouncing while computed recalculates synchronously on every change, and reading batched with .get() synchronously flushes the calculation
  12. assert subscribeKeys immediately primes the listener with current store value whereas listenKeys only fires on subsequent mutations, and listenKeys matches nested prefix keys upon dotted path updates
  13. assert mapCreator returns cached singleton stores by id while active and automatically evicts cached instances once unmounted after STORE_UNMOUNT_DELAY
  14. assert setPath and setByKey are immutable data transformation utilities that return cloned objects without mutating the original source, while getKey safely traverses nested paths from store state
  15. assert cleanStores resets store state in development mode and unmounts active stores synchronously

文件

  • NOTES.md
  • csx.json
  • package-lock.json
  • package.json
  • src/stores.mjs
  • test/contract.mjs

下载源代码构件 (tar.gz)

原始种子者

csx-seed