
Security News
TC39 Advances Temporal to Stage 4 Alongside Several ECMAScript Proposals
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.
rle-core...is a JavaScript library for working with 3D narrowband level sets. It is currently a work in progress, so expect this stuff to change over time. This library contains fundamental primitives and data structures for manipulating these objects.
Features for v0.1:
Planned features:
Via npm:
npm install rle-voxels
And to use it:
var rle = require("rle-voxels");
var box = rle.sample([100, 100, 100], new Function("x",
"return Math.min(Math.min(Math.abs(x[0]-50), Math.abs(x[1]-50)), Math.abs(x[2]-50)) - 30;"
);
var mesh = rle.surface(box);
To run one of the demos, first install serverify via npm:
sudo npm install -g serverify
Then go into one of the directories in examples/ and run it. For example:
cd examples/simple
serverify
And load the page in your browser at http://localhost:8080/index.html
Here are some resources which explain how to use this library:
Internally rle-core represents a volume as a list of runs sorted in colexicographic order. This allows for efficient point membership queries and fast iteration.
rle-core does not support efficient in place updates of volumes (though this may change in the future). The reason for this is that there is no standard balanced binary search tree data structure for Javascript, and none of the implementations that I have seen so far are sufficiently mature, robust and performant for these sorts of data sets.
(c) 2012-2013 Mikola Lysenko (mikolalysenko@gmail.com). MIT License.
FAQs
Core tools for working with narrow band level sets in JavaScript
We found that rle-core 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
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.

Research
/Security News
Since January 31, 2026, we identified at least 72 additional malicious Open VSX extensions, including transitive GlassWorm loader extensions targeting developers.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.