https://github.com/brickchain/node-controller-lib
Controller lib with node-jose and express bindings
https://github.com/brickchain/node-controller-lib
Last synced: 2 months ago
JSON representation
Controller lib with node-jose and express bindings
- Host: GitHub
- URL: https://github.com/brickchain/node-controller-lib
- Owner: Brickchain
- License: bsd-2-clause
- Created: 2018-02-15T13:59:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T10:13:44.000Z (about 7 years ago)
- Last Synced: 2025-02-08T21:46:10.508Z (4 months ago)
- Language: TypeScript
- Size: 43 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brickchain integrity controller library for node/express
This library helps you in creating a controller that binds with a realm and serves user interactive action-descriptors
Typical controllers allow for access to local or remote services such as locks, alarms, document signing, crypto services or banks.
A controller can use a security realm to verify role mandates or identify users via facts and a web of trust. This library contains all functionality to set up the binding to a realm, and the basic functionality to create a service.
This is the node version of the controller library, with dependence to node, node-jose and express for building a web-service with a controller endpoint.
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/commonjs bundles.Importing the library:
```js
import { Controller, Integrity } from "@brickchain/node-controller-lib"
```