@uprtcl/documents
v0.2.1
Published
Cortex module implementing texts and folders
Downloads
29
Readme
@uprtcl/documents
This cortex module implements patterns, services and lenses to interact with document-like objects that are behave as Evees.
Documentation
Visit our documentation site.
Install
npm install @uprtcl/documents
Usage
Import the module, instantiate it with its appropiate configuration, and load it:
import { IpfsStore } from "@uprtcl/ipfs-provider";
import { DocumentsModule } from "@uprtcl/documents";
const ipfsStore = new IpfsStore({
host: "ipfs.infura.io",
port: 5001,
protocol: "https",
});
const docs = new DocumentsModule([ipfsStore]);
await orchestrator.loadModule(docs);
To have update functionality, you also need to install the EveesModule.