Socket
Socket
Sign inDemoInstall

fastdom

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastdom

Eliminates layout thrashing by batching DOM read/write operations


Version published
Weekly downloads
50K
decreased by-12.13%
Maintainers
1
Weekly downloads
 
Created
Source

fastdom Build Status

Eliminates layout thrashing by batching DOM read/write operations.

var fastdom = new FastDom();

fastdom.read(function() {
  console.log('<DOM Read>');
});

fastdom.write(function() {
  console.log('<DOM Write>');
});

fastdom.read(function() {
  console.log('<DOM Read>');
});

fastdom.write(function() {
  console.log('<DOM Write>');
});

// Output:

<DOM Read>
<DOM Read>
<DOM Write>
<DOM Write>

Installation

FastDom is CommonJS and AMD compatible, you can install it in one of the follwing ways:

$ npm install fastdom

or

$ bower install fastdom

or

Old fashioned download.

How it works

FastDom works as a regulatory layer between your app/library and the DOM. By batching DOM access we avoid unnecessary document reflows and speed up layout perfomance dramatically.

Each read/write job is added to a corresponding read/write queue. The queues are emptied (reads, then writes) at the turn of the next frame using window.requestAnimationFrame.

FastDom aims to behave like a singleton across all modules in your app. When any module requires 'fastdom' they get the same instance back, meaning FastDom can harmonize DOM access app-wide.

Potentially a third-party library could depend on FastDom, and better intrgrate within an app that itself uses it.

API

FastDom#read(callback[, context])

Schedules a task for the 'read' queue.

fastdom.read(function() {
  var width = element.clientWidth;
});

FastDom#write(callback[, context])

Schedules a task for the 'write' queue.

fastdom.write(function() {
  element.style.width = width + 'px';
});

FastDom#clearRead(callback)

Removes a task from the 'read' queue.

var fn = function(){};

fastdom.read(fn);
fastdom.clearRead(fn);

FastDom#clearWrite(callback)

Removes a task from the 'write' queue.

var fn = function(){};

fastdom.write(fn);
fastdom.clearWrite(fn);

Tests

With PhantomJS
$ npm install
$ npm test
Without PhantomJS

Open test/index.html in your browser.

Author

  • Wilson Page - @wilsonpage

Contributors

FAQs

Package last updated on 10 Sep 2013

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