
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
@justscale/observable
Advanced tools
Proxy-based observable system with dirty tracking for TypeScript
Proxy-based observable system with dirty tracking for TypeScript.
npm install @justscale/observable zod
import { z } from "zod";
import { createModel, getModelInternals, watch } from "@justscale/observable";
// Define a schema
const schema = z.object({
user: z.object({
name: z.string().default(""),
score: z.number().default(0),
}),
});
// Create a model
const model = createModel(schema, { user: { name: "Alice" } });
// Watch for changes
watch(model, (paths) => console.log("Changed:", paths));
// Mutate - watchers are notified automatically
model.user.score = 100;
// logs: Changed: ["user.score", "user"]
// Check dirty state
const internals = getModelInternals(model);
internals.getDirtyPaths(); // ["user.score", "user"]
internals.markClean();
| Environment | Minimum Version |
|---|---|
| Node.js | 14.6+ |
| Chrome | 84+ |
| Firefox | 79+ |
| Safari | 14.1+ |
| Edge | 84+ |
Uses WeakRef for parent tracking. structuredClone is used when available (Node 17+) with automatic fallback.
for await) for change notificationsimport { z } from "zod";
import { createModel, getModelInternals } from "@justscale/observable";
const schema = z.object({
tags: z.array(z.string()).default([]),
});
const model = createModel(schema, {});
const internals = getModelInternals(model);
model.tags.push("active");
internals.getDirtyPaths(); // ["tags.0", "tags"]
internals.isDirty(); // true
internals.markClean();
import { createObservable, getObservableInternals } from "@justscale/observable";
const obs = createObservable({ count: 0, items: [] });
const internals = getObservableInternals(obs);
obs.count++;
obs.items.push("item");
internals.getDirtyPaths(); // ["count", "items.0", "items"]
import { watch } from "@justscale/observable";
// Callback mode
const handle = watch(model, (paths) => {
console.log("Changed:", paths);
});
handle.unsubscribe();
// Async generator - for await
const watcher1 = watch(model);
for await (const paths of watcher1) {
console.log("Changed:", paths);
if (shouldStop) watcher1.unsubscribe();
}
// Async generator - manual .next()
const watcher2 = watch(model);
const { value, done } = await watcher2.next();
if (!done) {
console.log("Changed:", value);
}
watcher2.unsubscribe();
Two models can share the same data. Changes through either model mark both as dirty with their respective paths:
import { z } from "zod";
import { createModel, getModelInternals, createObservable } from "@justscale/observable";
// Shared data
const sharedProfile = createObservable({ name: "Alice", score: 100 });
// Two different models, different schemas, same shared data
const schema1 = z.object({ user: z.any() });
const schema2 = z.object({ player: z.any() });
const model1 = createModel(schema1, { user: sharedProfile });
const model2 = createModel(schema2, { player: sharedProfile });
// Modify through model1
model1.user.score = 200;
// Both models are dirty with their own paths
getModelInternals(model1).getDirtyPaths(); // ["user.score", "user"]
getModelInternals(model2).getDirtyPaths(); // ["player.score", "player"]
// Both see the same value
model1.user.score; // 200
model2.player.score; // 200
// Clean model1, model2 stays dirty
getModelInternals(model1).markClean();
getModelInternals(model1).isDirty(); // false
getModelInternals(model2).isDirty(); // true - independent dirty tracking
const obs = createObservable({
cache: new Map(),
tags: new Set(),
updated: new Date(),
});
obs.cache.set("key", "value"); // Tracks: ["cache"]
obs.tags.add("new"); // Tracks: ["tags"]
obs.updated.setFullYear(2025); // Tracks: ["updated"]
| Operation | Dirty Paths |
|---|---|
obj.foo = 1 | ["foo"] |
obj.a.b.c = 1 | ["a.b.c", "a.b", "a"] |
arr.push(x) | ["arr.0", "arr"] |
arr.pop() | ["arr.N", "arr.length", "arr"] |
arr[0] = x | ["arr.0", "arr"] |
map.set(k, v) | ["map"] |
set.add(x) | ["set"] |
date.setFullYear(x) | ["date"] |
Classes with private fields (#field) throw TypeError - methods are bound to the proxy which breaks private field access.
Cannot observe frozen or sealed objects - we need to attach a symbol property for internals.
Built-in mutations (Map, Set, Date) track the container, not individual keys - we can't intercept internal slot mutations granularly.
MIT
FAQs
Proxy-based observable system with dirty tracking for TypeScript
We found that @justscale/observable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.