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

@cnrs/heimdall

v1.0.0

Published

Implementation of the HERA API, batteries included.

Readme

Heimdall.js

https://www.gnu.org/licenses/agpl-3.0.html https://www.repostatus.org/#active https://gitlab.huma-num.fr/datasphere/heimdall/js/pipelines/latest https://datasphere.gitpages.huma-num.fr/heimdall/js/coverage/ https://www.npmjs.com/package/@cnrs/heimdall https://datasphere.gitpages.huma-num.fr/heimdall/js/doc/ https://doi.org/10.5281/zenodo.10671999

What is this?

Heimdall is a tool for converting more easily one or more databases from one format to another.

Why should I use it?

If, for example, you find yourself in one of the following situations...

  • you need access to data, but it is not stored in a format compatible with your favorite software...
  • you'd prefer to merge several heterogeneous databases into a single corpus, easier to analyze...
  • you're considering which input format to use for your software or database...
  • you want to make your data more accessible and interoperable...

... then Heimdall can offer you an exchange format, and abstract the details of data implementation: yours, but also those of others.

Thanks to Heimdall, you can also switch from one technology to another in a matter of moments, as and when you need to, without ever losing, disorganizing or corrupting your data.

In a nutshell, HEIMDALL is your High End Interoperability Module when Data is ALL over the place. It's a bridge between scattered islands of data.

How can I use it?

You can install Heimdall.js ⟨10.5281/zenodo.10671999⟩ by installing the package @cnrs/heimdall from the NPM repository using your regular package manager.
For example:

pnpm install @cnrs/heimdall

You can add it as a dependency to your package.json file, as usual.

Once installed, you can start using it with a few simple calls:

import { getDatabase } from '@cnrs/heimdall';

var db = getDatabase(format='storage:memory', url='mydb');
db.createItem({
  metadata: [
      {pid: 'dcmi:title', value: "HEIMDALL" },
      {pid: 'dcmi:description', value: "Heimdall is awesome ヽ(´ー`)ノ" },
      {pid: 'dcmi:type', value: "http://purl.org/dc/dcmitype/Software" },
    ],
  });

Is it documented?

Sure!
You can read the user manual here, or jump directly to the technical reference here.
You can use your IDE built-in access to code documentation features, too.

Is it tested?

Of course!
Here's the coverage report.

You can run all tests on your machine, too.
After having cloned this repository, enter it, setup your dev environment, and then do for example:

pnpm run test:coverage

How can I contribute?

Aww that's so very kind of you! (。◕‿‿◕。)♥
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

GNU Affero General Public License version 3.0 or later

Acknowledgments

Heimdall would like to thank all its contributors and users for their support and feedback. ʕᵔᴥᵔʔ

Resources