
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Eliminates layout thrashing by batching DOM read/write interactions.
var dom = new DomBatch();
dom.read(function() {
console.log('<DOM Read>');
});
dom.write(function() {
console.log('<DOM Write>');
});
dom.read(function() {
console.log('<DOM Read>');
});
dom.write(function() {
console.log('<DOM Write>');
});
// Output:
<DOM Read>
<DOM Read>
<DOM Write>
<DOM Write>
Schedules a task for the 'read' queue.
dom.read(function() {
var width = element.clientWidth;
});
Schedules a task for the 'write' queue.
dom.write(function() {
element.style.width = width + 'px';
});
Removes a task from the 'read' queue.
var fn = function(){};
dom.read(fn);
dom.clearRead(fn);
Removes a task from the 'write' queue.
var fn = function(){};
dom.write(fn);
dom.clearWrite(fn);
$ npm install
$ npm test
$ node_modules/.bin/buster-static
...then visit http://localhost:8282/ in browser
FAQs
Eliminates layout thrashing by batching DOM read/write interactions
We found that dom-batch demonstrated a not healthy version release cadence and project activity because the last version was released 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.