Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ddom

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ddom

DerivableDOM as library

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

DDOM is Derivable DOM

Virtual DOM with less of the virtual

DOM structure (parent/child relationships only) is treated the same way as in React, with diffing and patching.

Dynamic HTMLElement properties, on the other hand, are bound (one-way!) to the nodes themselves.

This is all achieved using Derivables which enforces immutability and consistency in the state layer so we still avoid (most of?) the problems that React solves, but without (most of?) the additional problems it creates (e.g. inability to re-parent nodes). Whether or not new problems are created remains to be seen, but I am optimistic!

Composable custom behaviour based on Derivables is simple to implement and simple to apply.

toy example:

import {React, root, behaviour} from 'ddom'
import {atom} from 'derivable'

const $Time = atom(+new Date());
setInterval(() => $Time.set(+new Date()), 16);

const $seconds = $Time.derive(t => t - (t % 1000));

// blink on/off every quarter second
const blink = behaviour.ShowWhen($Time.derive(t => Math.round(t/250) % 2 == 0));

// custom behaviour
function TranslateX ($amount) {
  return node => $amount.reactor(x => {
    node.style.transform = `translateX(${x})`;
  });
}

const wobble = TranslateX(
  $Time.derive(t => (Math.sin(t / 300) * 40) + "px")
);

// this is an ordinary HTMLElement
const page = (
  <div behaviour={[blink, wobble]}>
    The time is now {$seconds.derive(t => new Date(t).toString())}
  </div>
);

window.addEventListener('load', () => {
  root(document.body, page);
})

So this updates the displayed time every second, shows/hides the div every quarter second, and wobbles about a bit, all just by updating the time atom.

have a look

FAQs

Package last updated on 24 Nov 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc