-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
47 lines (43 loc) · 1.09 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const jsonld = require("jsonld")
const IPFS = require("ipfs-http-client")
const { Buffer } = IPFS
const ipfs = IPFS()
const documentLoader = require("./index.js")(ipfs)
const context = {
schema: "http://schema.org/",
prov: "http://www.w3.org/ns/prov#",
}
ipfs.dag.put(context).then(cid => {
const contextUri = `dweb:/ipld/${cid.toBaseEncodedString()}`
console.log("context:", contextUri)
const doc = {
"@context": contextUri,
"prov:wasAttributedTo": {
"@type": "schema:Person",
"schema:name": "Eve",
},
"@graph": {
"@type": "schema:Person",
"schema:name": "Alice",
"schema:knows": {
"@type": "schema:Person",
"schema:name": "Bob",
},
},
}
const bytes = Buffer.from(JSON.stringify(doc))
ipfs.add(bytes).then(([{ hash }]) => {
const docUri = `ipfs://${hash}`
console.log("document:", docUri)
jsonld
.expand(docUri, { documentLoader })
.then(expanded => {
console.log("expanded", expanded)
jsonld.compact(expanded, contextUri, {documentLoader})
})
.then(result => {
console.log(JSON.stringify(result, null, " "))
process.exit()
})
})
})