5.0.0 • Published 6 years ago

blockstack-content v5.0.0

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

Example

const storage = storageDriver(); const notes = new MultiFileCollectionService({ type: "note", storage });

let publish = async () =>{
  await notes.createItem({
    "txt": "im a note!"
  }).then( async (res)=>{
    const item = await notes.getItem(res.id)
    console.log('get on item',item)
  });
  let items = await notes.getItems();
  console.log('get all items',items)
}
publish()

//

5.0.0

6 years ago

4.0.0

6 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago