An open API service indexing awesome lists of open source software.

https://github.com/brickchain/js-brickchain

A javascript and typescript library for parsing, creating brickchain messages
https://github.com/brickchain/js-brickchain

Last synced: 2 months ago
JSON representation

A javascript and typescript library for parsing, creating brickchain messages

Awesome Lists containing this project

README

        

# Brickchain integration library

This library helps you in creating a realm, controller or agent.
It depends on node-jose that actaully works in browser too, so
the library can be included in browser and node code.

The schemas are imported and compiled into typescript via json-schema
definitions on site.

See https://developer.brickchain.com/ for full documentation.

Building the library:

```sh
npm install
npm run build
```

This will create the dist folder with typescript declarations and
ES6 (import)/commonjs (require) bundles.

Importing the library:

```js
import { Integrity } from "Brickchain/js-brickchain"
```