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

@matteria-js/project

v0.1.0

Published

Serializable calculation project summaries for MATTERIA.

Downloads

59

Readme

@matteria-js/project

Serializable calculation project summaries for MATTERIA.

This package accepts a lightweight manifest of files and text snippets, then returns a JSON-friendly CalculationReport. It is intentionally independent of @matteria-js/io, but it accepts the same structural fields used by IO project manifests (path, name, role, kind, size/sizeBytes, and optional text snippets), so browser and Node callers can provide data from any source.

import { createCalculationReport } from "@matteria-js/project";

const report = createCalculationReport({
  files: [
    {
      path: "OUTCAR",
      role: "outcar",
      text: "free  energy   TOTEN  =       -12.3 eV\nE-fermi : 4.5",
    },
    {
      path: "XDATCAR",
      role: "xdatcar",
      kind: "trajectory",
      text: "Direct configuration= 1\n0 0 0\nDirect configuration= 2\n0.1 0 0",
    },
  ],
});

console.log(report.finalEnergy);
console.log(report.trajectory.steps);
console.log(report.sourceSummary.categories);

When a caller already has an @matteria-js/io-style DFT project manifest, use the structural manifest bridge. It can summarize parsed manifest fields even when raw file text was not retained:

import { createCalculationReportFromManifest } from "@matteria-js/project";

const report = createCalculationReportFromManifest(dftProjectManifest);

console.log(report.sourceFiles[0]?.hasText); // reflects original source text availability
console.log(report.sourceSummary.knownSizeBytes);
console.log(report.finalEnergy);

The parser is conservative. It recognizes common VASP and Quantum ESPRESSO snippets for calculation type, final energy, Fermi level, magnetization, force, stress, and basic convergence markers. VASP XDATCAR text can contribute trajectory step counts, parsed QE pw.x manifest summaries can contribute calculation-output metrics without retaining raw text, and QE pp.x snippets or parsed manifest summaries can identify volumetric post-processing reports. sourceSummary reports file counts, known bytes, text availability, role/kind/format counters, and conservative artifact buckets for dashboards. This package still does not try to replace full output parsers.