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
- Host: GitHub
- URL: https://github.com/brickchain/js-brickchain
- Owner: Brickchain
- License: bsd-2-clause
- Created: 2018-08-30T09:32:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-02T13:35:58.000Z (over 6 years ago)
- Last Synced: 2025-02-08T21:46:11.136Z (4 months ago)
- Language: TypeScript
- Size: 216 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```