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

matterviz-wasm

v0.0.7

Published

WASM bindings for ferrox structure matching library

Readme

matterviz-wasm

WebAssembly bindings for the ferrox structure matching library.

Installation

pnpm add matterviz-wasm

Building from Source

Requires wasm-pack:

cargo install wasm-pack

Then build:

pnpm build

Testing

Build the WASM first, then run tests:

pnpm build
pnpm test

Usage

import init, { parse_cif, parse_poscar, WasmStructureMatcher } from 'matterviz-wasm'

// Initialize the WASM module
await init()

// Parse a structure from CIF content
const result = parse_cif(cifContent)
if ('ok' in result) {
  const structure = result.ok
  console.log(`Parsed structure with ${structure.sites.length} sites`)
} else {
  console.error(`Parse error: ${result.error}`)
}

// Compare two structures
const matcher = new WasmStructureMatcher()
  .with_latt_len_tol(0.2)
  .with_site_pos_tol(0.3)

const match_result = matcher.fit(structure1, structure2)
if ('ok' in match_result) {
  console.log(`Structures match: ${match_result.ok}`)
}

API

Parsing Functions

  • parse_structure(input) - Parse from pymatgen-compatible JSON object
  • parse_cif(content) - Parse from CIF content string
  • parse_poscar(content) - Parse from POSCAR content string

Structure Operations

  • make_supercell_diag(structure, nx, ny, nz) - Create a supercell with diagonal scaling
  • get_reduced_structure(structure, algo) - Get Niggli or LLL reduced structure
  • get_primitive(structure, symprec) - Get the primitive cell
  • get_spacegroup_number(structure, symprec) - Get the spacegroup number
  • structure_to_json(structure) - Serialize to pymatgen-compatible JSON string

WasmStructureMatcher

Builder-pattern structure matcher:

const matcher = new WasmStructureMatcher()
  .with_latt_len_tol(0.2) // Fractional lattice length tolerance
  .with_site_pos_tol(0.3) // Normalized site position tolerance
  .with_angle_tol(5.0) // Angle tolerance in degrees
  .with_primitive_cell(true) // Reduce to primitive cell first
  .with_scale(true) // Scale volumes to match
  .with_element_comparator(false) // Use species (not just element) matching

Methods:

  • fit(struct1, struct2) - Check if two structures match
  • fit_anonymous(struct1, struct2) - Match under any species permutation
  • get_rms_dist(struct1, struct2) - Get RMS distance between structures
  • deduplicate(structures) - Find unique structures in a set
  • find_matches(new_structures, existing) - Find matches against existing set

Result Type

All functions return a discriminated union:

type WasmResult<T> = { ok: T } | { error: string }

Use the helpers from the TypeScript wrapper:

import { is_ok, unwrap } from '$lib/structure/ferrox-wasm'

const result = matcher.fit(s1, s2)
if (is_ok(result)) {
  console.log(result.ok) // boolean
} else {
  console.error(result.error) // string
}

// Or throw on error:
const matches = unwrap(result) // throws if error