jObserve.js 0.8.1

dotnet add package jObserve.js --version 0.8.1
NuGet\Install-Package jObserve.js -Version 0.8.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="jObserve.js" Version="0.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add jObserve.js --version 0.8.1
#r "nuget: jObserve.js, 0.8.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install jObserve.js as a Cake Addin
#addin nuget:?package=jObserve.js&version=0.8.1

// Install jObserve.js as a Cake Tool
#tool nuget:?package=jObserve.js&version=0.8.1

Observe.js v0.8.1

Tweet npm nuget license discussions Welcome coded by William Troup

A lightweight JavaScript library that allows developers to keep track of changes to JavaScript objects and/or DOM elements.

What features does Observe.js have?

  • Zero-dependencies and extremely lightweight!
  • JS Object and HTML DOM Element watching!
  • Watch for specific property changes!
  • Cancel, Pause, and Resume support!
  • Full API available via public functions.
  • Fully configurable!
  • Fully configurable per watch!
  • Custom triggers for actions (when changes are detected, on cancellation, etc).

What browsers are supported?

All modern browsers (such as Google Chrome, FireFox, and Opera) are fully supported.

What are the most recent changes?

To see a list of all the most recent changes, click here.

How do I install Observe.js?

You can install the library with npm into your local modules directory using the following command:

npm install jobserve.js

How do I get started?

To get started using Observe.js, do the following steps:

1. Prerequisites:

Make sure you include the "DOCTYPE html" tag at the top of your HTML, as follows:

<!DOCTYPE html>

2. Include Files:

<script src="dist/observe.js"></script>

3. DOM Element Binding / Object Watching:

<div data-observe-watch-options="{ 'onChange': yourCustomJsFunction }">
    Your HTML.
</div>
<script> 
    var id = $observe.watch( yourObject, {
        onChange: yourCustomJsFunction
    } );
</script>

To see a list of all the available binding options you can use for "data-observe-watch-options", and "watch()", click here.

To see a list of all the available custom triggers you can use for "data-observe-watch-options", and "watch()", click here.

4. Finishing Up:

That's it! Nice and simple. Please refer to the code if you need more help (fully documented).

How do I go about customizing Observe.js?

To customize, and get more out of Observe.js, please read through the following documentation.

1. Public Functions:

To see a list of all the public functions available, click here.

2. Configuration:

Configuration options allow you to customize how Observe.js will function. You can set them as follows:

<script> 
  $observe.setConfiguration( {
      safeMode: false
  } );
</script>

To see a list of all the available configuration options you can use, click here.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.8.1 148 3/19/2024
0.8.0 131 3/14/2024
0.7.1 159 2/20/2024
0.7.0 169 2/7/2024
0.6.1 163 1/17/2024
0.6.0 136 1/8/2024
0.5.1 139 1/5/2024
0.5.0 120 1/5/2024
0.4.0 159 1/3/2024
0.3.0 107 1/3/2024
0.2.0 164 1/2/2024
0.1.0 125 1/1/2024