Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/egonelbre/storj-notes
Example how to use storj.io/uplink to store small notes.
https://github.com/egonelbre/storj-notes
Last synced: 25 days ago
JSON representation
Example how to use storj.io/uplink to store small notes.
- Host: GitHub
- URL: https://github.com/egonelbre/storj-notes
- Owner: egonelbre
- License: unlicense
- Created: 2020-04-06T08:02:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-06T08:04:10.000Z (almost 5 years ago)
- Last Synced: 2024-12-09T01:39:39.268Z (about 1 month ago)
- Language: Go
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# storj-notes
Minimal project example using storj.io/uplink library.
Currently this project demonstrates how to set, get, list and delete information on the Storj Network. While storing tiny objects is not the best application, however it is a small example how to use the library.
## Installation
Outside of GOPATH run:
```
go get github.com/egonelbre/storj-notes
```## Usage
Uploading a note:
```
storj-notes set
```Downloading a note:
```
storj-notes get
```Listing notes:
```
storj-notes list
```Deleting a note:
```
storj-notes delete
```