npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

watched-object

v2.2.4

Published

Objects that emit events whenever used or altered

Downloads

28

Readme

Watched Object

This is a very simple JavaScript/TypeScript library dedicated to whenever you need to watch an object for its changes.

Installation

You can easily install it in your NodeJS project using npm or yarn:

npm install watched-object

# or 

yarn add watched-object

Usage examples

import { Model } from "watched-object";

const position = new Model({
    x: 0,
    y: 0
});

let writeCounter = 0;

// Use the watcher to listen to the events
// The "write" event fires immediately whenever a key is altered
position.watcher.on("write", () => {
    writeCounter ++;
});

// Use the controller to alter the object
position.controller.x = 1;
position.controller.y = 2;

console.log(writeCounter);
// > 2

// The "change" event waits a few milliseconds before firing, 
// in order to group several keys into one single event
position.watcher.on("change", event => {
    console.log("new position", event.newValues);
    // > new position { x: [...], y: [...] }
});

// Change position randomly every second
setInterval(() => {
    position.controller.x = Math.random() * 10;
    position.controller.y = Math.random() * 10;
}, 1000);

Besides the Model class, there's also a View class that can be used to create objects that automatically react to changes in other objects!

import { Model, View } from "watched-object";

const gradeRawData = new Model({
    grades: [9, 3, 5, 8, 4]
});

// These values will be automatically updated whenever the grades change
const gradeStatistics = new View(gradeRawData, {
    highest: model => Math.max(...model.grades),
    lowest: model => Math.min(...model.grades),
    average: model => model.grades.reduce((sum, grade) => sum + grade, 0) / model.grades.length
});

console.log(gradeStatistics.controller);
// > { highest: 9, lowest: 4, average: 5.8 }

gradeRawData.controller.grades.push(10);
gradeRawData.controller.grades.push(0);

console.log(gradeStatistics.controller);
// > { highest: 10, lowest: 0, average: 5.571428571428571 }

The view is basically a model that reacts to other models, which means you can also apply the functionalities of the Model class to the View class:

// The view can also be watched, if needed
gradeStatistics.watcher.on("write", event => {
    if (event.key === "average") console.log("new average", event.newValue);
});

gradeRawData.controller.grades.push(7);
// > new average 5.75

// And... you can create views of views
const evenMoreGradeStatistics = new View(gradeStatistics.model, {
    span: model => model.highest - model.lowest
});

console.log("span", evenMoreGradeStatistics.controller.span);
// > span 10

gradeRawData.controller.grades = [4, 5, 6];
// > new average 5

console.log("span", evenMoreGradeStatistics.controller.span);
// > span 2