npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xtia/grid

v0.1.1

Published

2D store and utilities, with zero-copy regions and transform layers, pathfinding, Pipe2D interop

Readme

Grid

Beta: Stable core, open to refinement pre-1.0.0

Summary

A mutable 2D grid with efficient region views, spatial operations, and seamless interoperability with Pipe2D. Store, edit, and transform 2D data with an ergonomic API designed for practical use.

Features

  • Mutable 2D storage with type safety
  • Zero-copy region views - edit or provide subgrids and transformation layers without copying
  • Spatial operations - fill, paste, flood fill, pathfinding
  • First-class Pipe2D interoperability – use grids as sources for pipes, or pipes as sources for grids
  • Consistent API - for grids, regions, and your existing 2D structures
  • Mask support - apply operations to arbitrary shapes

Example

npm i @xtia/grid
import { Grid } from "@xtia/grid"; // ~4.8kb gzipped (2.2kb + Pipe2D dep)

// initialise a 30x20 Grid<number> of 0's
const numGrid = Grid.solid(30, 20, 0);

// change a value
numGrid.set(3, 3, 50);

// initialise a chessboard
const chessGrid = Grid.init(8, 8, (x, y) => 
	(x + y) % 2 === 0 ? 'black' : 'white'
);

// read a value
const colour = chessGrid.get(4, 5);

// initialise a grid from a Pipe2D
const source = imagePipe
	.crop(10, 10, 64, 64)
	.scale(.5)
	.rotateLeft();
const grid = Grid.from(source);

Wrapping existing structures

Use Grid's interface and features over any read/write 2D structure:

const gameMap = [
	[0, 1, -1, 2],
	[1, 0, 1, 0],
	[-1, 1, 0, 2],
	[2, 0, 2, -1]
];

// create a *live view* Grid over gameMap
const grid = Grid.wrap(
	gameMap[0].length, // width
	gameMap.length, // height
	(x, y) => gameMap[y][x], // get
	(x, y, value) => gameMap[y][x] = value // set
);

// reading the grid = reading the source
gameMap[0][0] = 50;
console.log(grid.get(0, 0)); // 50
// writing to the grid = writing to the source
grid.set(3, 3, 100);
console.log(gameMap[3][3]); // 100

Regions

Use grid.region(x, y, w, h) to define a subgrid. The subgrid is zero-copy view into the parent; changes to the subgrid affect the parent and vice-versa.

// game map with terrain
const world = Grid.solid(100, 100, "grass"); // Grid<string>

// add a lake
world.region(30, 30, 20, 20).fill("water");

// add mountains around the lake with a circular mask
const centre = world.cells.get(40, 40);
const mask = (x: number, y: number) => {
  const dist = Math.hypot(x - centre.x, y - centre.y);
  return dist > 12 && dist < 18; // mountain ring
};
world.writeMask(mask).fill("mountain");

// get a view of just the interesting area
const lakeRegion = world.region(25, 25, 30, 30);

// do we want a distinct, self-contained copy of the region?
const lakeGrid = Grid.from(lakeRegion);

Transformation Layers

grid.map(read, write) creates a zero-copy view that reads and writes the parent through the provided transformation functions.

const spriteMap = world.map(
	type => type + ".png", // add .png on parent-read
	sprite => sprite.replace(/\..*/, '') // remove it on parent-write
);

console.log(spriteMap.get(0, 0)); // read the transformed view: "grass.png"
spriteMap.set(1, 0, "forest.png"); // modify the view
console.log(world.get(1, 0)); // read the parent: "forest"

For one-way read-mapping, use grid.pipe - a Pipe2D view into the grid's data.

// create a one-way, player-centred sprite map
const viewport = world.pipe
	.oob("mountain")
	.map(t => t + ".png")
	.crop(playerX - 5, playerY - 5, 10, 10);

// or get a list of locations of cells with mountains
const mountainCells = world.cells.toFlatArrayXY()
	.filter(cell => cell.value === "mountain")
	.map(cell => [cell.x, cell.y]);

// or get a live, renderable minimap
import { C } from "@xtia/rgba";

const colourMap = new Map(Object.entries({
	grass: C.x0f0,
	water: C.x00f,
	forest: C.x080,
	mountain: C.xa70
}));
const minimap = world.pipe
	.map(colourMap)
	.floorCoordinates()
	.crop(viewX, viewY, vw, vh)
	.stretch(canvas.width, canvas.height);

Cell interface

grid.cells provides a Pipe2D, for convenient transformation, of Cell objects, each representing a live view into a grid location.

const topLeft = world.cells.get(0, 0);
console.log(topLeft.value); // "mountain"

topLeft.value = "forest"; // modifies the underlying data
console.log(spriteMap.get(0, 0)); // now "forest.png";

// navigate by offset
const adjacentCell = topLeft.look(1, 0);
console.log(adjacentCell?.x, adjacentCell?.y); // 1, 0

Cells provide methods for locational utilities such as pathfinding and visibility mapping.

Cells are unique to, owned by, and coordinated relative to the view that provided them. Their pathfinding and visibility mapping features are unaware of space outside of their view's bounds.

(Everybody needs good) Neighbours

cell.getNeighbours(includeDiagonals?) returns an array of Cells:

// derive a display number for clicked cells in Minesweeper
const numOfAdjacentMines = clickedCell.getNeighbours(true)
	.filter(cell => cell.value.isMine)
	.length;

Path finding

findPath() computes an optimal path from a cell to another location in the grid, accounting for cell/traversal costs according to a user-provided predicate or Map<T, number>.

const costs = {
	grass: 1,
	water: Infinity,
	mountain: Infinity,
	forest: 2
};

const start = world.cells.get(5, 5);
const destination = world.cells.get(90, 90);

const path = start.findPath(
	destination, // or simply [90, 90]
	(cell) => costs[cell.value]
); // Cell<string>[]

Visibility mapping

createVisibilityMap() returns a Pipe2D<boolean> that maps which cells are 'visible' from the starting point, according to a user-provided predicate to determine which cells block vision.

// createVisibilityMap(isClear);
const visibility = start.createVisibilityMap(
	cell => cell.value === "grass" // anything except grass blocks vision
);

screenGrid.writeMask(visibility).paste(spriteMap, 0, 0);

Reusing path data

Use cell.getPathMap(costFunc) to create a Pipe2D of optimal paths from the parent cell. The grid space is explored once to produce an internal traversal map, and paths to individual cells are constructed from that data (and cached) when that pipe is queried.

const pathMap = start.getPathMap(c => costs[c.value]);

const pathToCentre = pathMap.get(50, 50);
const pathToCorner = pathMap.get(99, 99);

Unlike visibility maps, which are lazily evaluated according to the supplied isClear function when the map is queried (but can be easily cached with visMap.withCache()), path maps use a relatively expensive traversal map that's created when the map is created. This distinction is hinted through the create* vs get* naming.

The storage layer

Grid itself is an interface for reading and writing 2D data. GridBase - a subclass of Grid - maintains the actual storage of such data.

Although the Grid factory methods (Grid.solid<T>(), Grid.from<T>(), Grid.init<T>()) belong to Grid, they return a GridBase<T>. Grid.wrap<T>() is an exception, returning Grid<T>, as it uses a storage layer provided by the user. The only API distinction is that GridBase provides a 'change' event, via grid.on("change", handler).

We can perform batched updates, suppressing the 'change' event until a process concludes, with grid.batchUpdate(callback).

Save and load

Pipe2D makes it easy to save and restore grid data:

const snapshot = world.pipe.stash();

const restored = Grid.from(snapshot);
// or paste it to an existing grid
world.paste(snapshot);

For persistent storage or transmission, Pipe2D can export as array:

const saved = snapshot.toFlatArrayXY(); // ["grass", "forest", "grass", ...]

const restoredSnapshot = Pipe2D.fromFlatArrayXY(saved);