Skip to content

apowers313/mds-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

mds-client

FIDO Metadata Service (MDS) Client

Retreives metadata table of contents (TOC) from MDS as well as any retreivable entries.

For more about FIDO, visit: https://fidoalliance.org

Installation

npm install mds-client

API

var MDSC = require("mds-client");
var mdsClient = new MDSC(/* opt */);
mdsClient.fetchToc()
    .then(function (toc) {
        // do stuff with MDS TOC
        });

mdsClient.fetchEntries()
    .then(function (entries) {
        // do stuff with MDS entries
        });
  • constructor(opts) - the constructor takes an options object argument with the following options:
    • url (default: https://mds.fidoalliance.org) - the URL for fetching the MDS TOC
    • parallelFetchLimit (default: 5) - the number of parallel requests when fetching metadata entries
  • fetchToc - returns a Promise that resolves to a object containing the MDS TOC
  • fetchEntries - returns a Promies that resolves to an Array of all metadata entries

About

FIDO Metadata Service (MDS) Client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published