@apimarket/apimarket-server

1.0.0 • Public • Published

About

This repository contains a library for interacting with the Aikon marketplace.

It wraps the Open Rights Exchange protocol to simplify the buying and selling of APIs in the marketplace.

Usage

Server

There are 2 ways to use this library. Both of the methods require verifier public key in the following format in the env file

VERIFIER_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----\nMFkw....==\n-----END PUBLIC KEY-----"

As an express middleware

With the verifier public key in the env file, supply an Express-style HTTP handler that services your API. Only valid requests will be served

const { apiMarketRequestValidator } = require('@apimarket/apimarket-server')

app.use(apiMarketRequestValidator())

As a javascript function from the library

With the verifier public key in the env file, use the checkOreAccessToken function of the library

const { apiMarketRequestValidator } = require('@apimarket/apimarket-server')

const isValidOreAcessToken = await checkOreAccessToken(req.headers['ore-access-token'], req)

Publish NPM Package

  • Update version number in package.json
  • npm publish --tag staging - to publish staging version
  • npm publish - to publish the production version

package name will be: @apimarket/apimarket-server@{version}

Dependents (0)

Package Sidebar

Install

npm i @apimarket/apimarket-server

Weekly Downloads

3

Version

1.0.0

License

MIT

Unpacked Size

13.2 kB

Total Files

12

Last publish

Collaborators

  • apimarket