0.0.5 • Published 6 years ago

ipts v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

IPTS

InterPlanetary Tagging Service -- ipts.io

IPTS is the tagging service for associating git-style tags (i.e. head) with IPFS hashes and visa versa.

Install

npm install ipts
const { get, set, remove } = require("ipts")

const run = async () => {
  console.log('get', await get("hellothere"))
  console.log('set', await set("hellothere", Math.random() * 1000))
  console.log('get', await get("hellothere"))
  console.log('remove', await remove("hellothere"))
  console.log('get', await get("hellothere"))
}

run()
0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

7 years ago