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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@digitalbazaar/credentials-context

v3.1.0

Published

Verifiable Credentials Contexts for JavaScript

Downloads

3,143

Readme

Verifiable Credentials Contexts (@digitalbazaar/credentials-context)

Node.js CI NPM Version

A Verifiable Credentials Data Model contexts library for JavaScript

This project packages the contexts for the Verifiable Credentials Data Model specs for use with Node.js and web apps.

Table of Contents

Background

See related specs:

Security

TBD

Install

Requires Node.js 18+

To install via NPM:

npm install @digitalbazaar/credentials-context

Usage

import {contexts, metadata, named} from '@digitalbazaar/credentials-context';
// or
const {contexts, metadata, named} = require('@digitalbazaar/credentials-context');

The contexts Map can be used to access individual contexts by id or load them into a JSON-LD document loader. The contextsMetadata Map contains extra information about each context.

This package can be used with bundlers, such as webpack, in browser applications.

API

The library exports two properties:

  • contexts: A Map associating context URLs to context data.
  • metadata: A Map associating context URLs to context metadata.
  • named: A Map associating short package specific names to context metadata.

Note that the metadata format is experimental and subject to change. The id field is expected to stay stable and can be used with the named Map to get a context URL for a short name such as v2.

The context files are available in the published contexts/ directory. The metadata has a URL for each context. Note that these files are semantically equivalent to published spec contexts but the formatting may differ such that strict file digests are not equivalent.

Status

The following contexts are available as of mid-2024. They track the published spec contexts.

  • Verifiable Credentials v1.1 context
    • URL: https://www.w3.org/2018/credentials/v1
    • Short name: v1
    • Status: stable
  • Verifiable Credentials v2.0 context
    • URL: https://www.w3.org/ns/credentials/v2
    • Short name: v2
    • Status: under development
  • Verifiable Credentials v2.0 undefined terms context
    • URL: https://www.w3.org/ns/credentials/undefined-terms/v2
    • Short name: undefined-terms-v2
    • Status: under development

Developing

Source is available at:

  • https://github.com/digitalbazaar/credentials-context

WARNING: The .jsonld files in contexts/ is auto-generated by the npm run build script each time the test suite is run.

DO NOT edit them directly since changes will be overwritten.

Make all context changes to lib/*.js.

Commercial Support

Commercial support for this library is available upon request from Digital Bazaar: [email protected]

License

  • Code: BSD 3-Clause © Digital Bazaar
  • Contexts: W3C Software and Document License
  • See the LICENSE file for details.