Socket
Socket
Sign inDemoInstall

did-context

Package Overview
Dependencies
0
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    did-context

DID Context


Version published
Weekly downloads
861
decreased by-4.86%
Maintainers
6
Created
Weekly downloads
 

Changelog

Source

3.1.1 - 2021-09-14

Fixed

  • Fix rollup export.

Readme

Source

DID Context (did-context)

NPM Version

A DID (Decentralized Identifier) context library for JavaScript

This project packages the DID Context from the DID specification for use with Node.js and web apps.

Table of Contents

Security

TBD

Background

See also (related specs):

Install

Requires Node.js 8.3+

To install via NPM:

npm install did-context

Usage

import didContext from 'did-context';
// or
const didContext = require('did-context');

// use URL in a JSON-LD context
const obj = {
  "@context": [
    didContext.CONTEXT_URL_V1,
    // ...
  ],
  // ...
};

// get context data for a specific context
const data = didContext.CONTEXT;
// ...

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

API

The library exports two properties:

  • constants: A Object that maps constants to well-known context URLs. The main constant DID_CONTEXT_URL may be updated from time to time to the latest context location.
  • contexts: A Map that maps URLs to full context data.

Contribute

Code and packaging development is at the did-context project. The contexts themselves are developed in the did-spec project.

Contexts in this package are updated manually from the did-spec contexts. Please file an issue if this package is not synced with did-spec changes in a timely manner.

Small note: If editing the Readme, please conform to the standard-readme specification.

Commercial Support

Commercial support for this library is available upon request from Digital Bazaar: support@digitalbazaar.com

License

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

FAQs

Last updated on 14 Sep 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc