All Projects → storj → storj.js

storj / storj.js

Licence: LGPL-3.0 license
Deprecated. Browser library for interacting with Storj.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to storj.js

webrtc-lab
WebRTC 연구실 🌎
Stars: ✭ 55 (+96.43%)
Mutual labels:  p2p
workshop-todo-dapp
A workshop into adding realtime collaboration in a typical To-do app
Stars: ✭ 29 (+3.57%)
Mutual labels:  p2p
gobyte
GoByte Core - GBX
Stars: ✭ 35 (+25%)
Mutual labels:  p2p
fengming
No description or website provided.
Stars: ✭ 14 (-50%)
Mutual labels:  p2p
squeaknode
Peer-to-peer status feed 📜 with posts unlocked by Lightning ⚡
Stars: ✭ 29 (+3.57%)
Mutual labels:  p2p
nkn-shell-daemon
NKN shell daemon
Stars: ✭ 29 (+3.57%)
Mutual labels:  p2p
SentryPeer
A distributed peer to peer list of bad actor IP addresses and phone numbers collected via a SIP Honeypot.
Stars: ✭ 108 (+285.71%)
Mutual labels:  p2p
remote-lib
💫 Convert your JavaScript library to a remote service.
Stars: ✭ 40 (+42.86%)
Mutual labels:  p2p
rdoc
Conflict-free replicated JSON implementation in native Go
Stars: ✭ 76 (+171.43%)
Mutual labels:  p2p
cypherpoker.js
An open source peer-to-peer poker platform with cryptocurrency integration written in JavaScript.
Stars: ✭ 72 (+157.14%)
Mutual labels:  p2p
matchbox
Painless peer-to-peer WebRTC networking for rust wasm
Stars: ✭ 276 (+885.71%)
Mutual labels:  p2p
Horizon
A ZeroNet search engine
Stars: ✭ 15 (-46.43%)
Mutual labels:  p2p
c-toxcore
The future of online communications.
Stars: ✭ 1,730 (+6078.57%)
Mutual labels:  p2p
lens
The official network explorer for Wavelet.
Stars: ✭ 28 (+0%)
Mutual labels:  p2p
conceal-mobile
Conceal Mobile - Encrypted DeFI & Messaging App
Stars: ✭ 15 (-46.43%)
Mutual labels:  p2p
dat-workshop
How to build web apps using Dat. A workshop by GEUT.
Stars: ✭ 50 (+78.57%)
Mutual labels:  p2p
bittensor
Internet-scale Neural Networks
Stars: ✭ 97 (+246.43%)
Mutual labels:  p2p
Satellite-Legacy
Satellite gives you peace of mind with end-to-end encryption without sacrificing quality. Stream in 4k, chat in 500kbs+, share 10GB files.
Stars: ✭ 46 (+64.29%)
Mutual labels:  p2p
viddist
[not functional] A completely decentralized alternative to e.g. YouTube
Stars: ✭ 22 (-21.43%)
Mutual labels:  p2p
awesome-storj
A curated list of projects, tools, and resources for Storj
Stars: ✭ 182 (+550%)
Mutual labels:  storj

Notice: Development on this repository is currently on pause during our v3 rearchitecture. Please see storj/storj for ongoing v3 development.

storj.js

The official Storj library, for node.js and the browser.

Development Status

This library is currently in early beta. It is released for testing purposes only. Files uploaded via storj.js are not currently compatible with the reference implementation. If you are developing an application, we strongly recommend that you use libstorj via bindings.

Table of Contents

Install

Node.js

If you are building an application that will run outside of a browser, such as a web server, you should use Node.js. From the root of your project directory, alongside your package.json, run:

npm install --save storj

Note: during the beta, this package will not be available via npm. Instead, install with the following syntax: npm install --save https://github.com/storj/storj.js

Browser

Download the Storj.js library from our releases page and place it alongside the index.html file for your website, saving it as storj.js. Then, in index.html include:

<html>
  <head>...</head>
  <body>
    ...
    <script src="./storj.js"></script>
    ...
  </body>
</html>

The files on our releases page are named after the version of the ECMAScript they target. If you are wanting to target older browsers, use storj.es5.js which targets ES5, othwise use storj.es6.js.

Usage

Use in Node.js

var Storj = require('storj');
var storj = new Storj()

Use in the browser

<script src="storj.js"></script>
<script>
  var storj = new Storj(options);
  ...
</script>

API

Storj.js exposes an isomorphic API that works both in the browser and in node.js!

Storj Object

var storj = new Storj([opts])

Create a new Storj instance, which will be used to talk across the storj protocol. This object will emit the ready event when it has finished being configured.

The optional opts allows you to override the default behaviour of this object. The opts object is how you will pass in your user credentials if you need to work with private buckets.

opts:

{
  bridge: STRING, // The url of the bridge to talk to, defaults to https://api.storj.io
  basicAuth: OBJECT, // Used for any requests that require authentication, this is your username and password
  key: STRING, // Private key, used for any requests that require authentication
  encryptionKey: STRING // Used to encrypt and decrypt data stored in private buckets
}

basicAuth should be of the form:

{
  email: STRING,
  password: STRING
}

If you need to use authentication in your application, we strongly suggest you use the key method as it provides a higher level of security.

Both basicAuth and key are optional, but you may only provide one or the other. If you use basicAuth, the library will assume that you already have registered a public key with the bridge you are authenticating with. To create a public/private key pair for you and register it to your account you can use the generateKeyPair and registerKey API.

If you provide a key, this key will be used to authenticate every request moving forward.

storj.on('error', function (e) {})

Emitted when the library encounters a catastrophic error that will probably prevent normal operation moving forward. When an error is emitted, you should cleanup your Storj object and create a new one.

storj.on('ready', function () {})

Emitted when the Storj object is ready to communicate with the storj network.

var keypair = storj.generateKeyPair([privateKey])

Create a new public/private KeyPair for authenticating against the Storj network. Note, this function will not register this key with your account, you must provide storj.registerKey with the returned public key to do that.

storj.registerKey(publicKey, function cb(e) {})

Register a public key with the Storj network. cb will be called with an Error if something goes wrong or null otherwise.

var keypair = storj.generateKeyPair();
storj.registerKey(keypair.getPublicKey(), function(e) {
  if(e) { /* failed to register key */ }
});

storj.getKeyList(function cb(e, keys) {})

Get a list of all public keys stored for the current user. cb will be called with an Error if something goes wrong, or will be passed an array keys, where each element of the array is an object in the form:

{
  user: String, // The user the key belongs to
  key: Striong, // The public key itself
  id: String    // The unique id of the key
}

storj.removeKey(publicKey, function cb(e) {})

Remove a public key from the Storj network. cb will be called with an Error if something goes wrong or null otherwise.

var encryptionKey = storj.generateEncryptionKey()

Create a new encryption key, which can be used to encrypt/decrypt files on the storj network. Certain operations, such as createFile, require that Storj was provided an encryption key when constructed. Keep track of this, as it will be necessary to retrieve your files in the future.

var key = storj.generateKeyPair().getPrivateKey();
var encryptionKey = storj.generateEncryptionKey();
var storj = new Storj({ key, encryptionKey });
// storj can now perform bucket operations and upload/download files

storj.createBucket(bucketName, function cb(e, meta) {})

Create's a bucket on the storj network with the requested name. cb will be invoked with an error if creating the bucket fails, otherwise meta will contain metadata for the bucket created.

meta has the following properties:

{
  id: String, // The bucket id of the newly created bucket
  name: String // the name of the newly created bucket
}

storj.getBucket(bucketId, function cb(e, meta) {})

Get the metadata for a bucket. cb will be invoked with an error if getting the meta-data fails, otherwise meta will have the following properties:

{
  id: String, // The id of the bucket
  name: String // The name of the bucket
}

storj.getBucketList(function cb(e, buckets) {})

Get a list of all buckets associated with the currently authenticated account on the storj network. cb will be invoked with an error if getting the list of buckets fails, or with an array of meta-data about the buckets. Each element of the buckets array will have the following properties:

{
  id: String, // the bucketID of the bucket
  name: String // the name of the bucket
}

storj.makePublic(bucketId, [perms], function cb(e) {})

Give public access to an existing bucket. cb will be passed an Error if something goes wrong, or undefined otherwise. perms should be an array of permission strings, currently supported permissions are:

  • PULL - Allow others to download from this bucket
  • PUSH - Allow users to upload to this bucket
storj.makePublic(bucketId, ["PULL", "PUSH"], function(e) {
  if(e) {
    /* Handle Error */
  }
  /* Bucket is now public with both pull and push permissions */
})

storj.deleteBucket(bucketId, function cb(e) {})

Remove a bucket from the Storj network. cb will be invoked with an error if the operation fails, or null otherwise.

var file = storj.createFile(bucketId, fileName, file, [opts], [function cb() {}])

Upload a file to a bucket.

bucketId - the id of the bucket that we will be uploading the file to (String) fileName - the name of the file we are uploading, with it's extension (String) file - the contents of the file and can be any of the following:

opts is optional, and allows you to specify some of the file's metadata:

{
  fileSize: Number, // Size of the file in bytes, required if `file` is a stream
}

cb is an optional function that will be registered as a listener on the returned File's done event.

var file = storj.getFile(bucketId, fileId, [function cb() {}])

bucketId - the id of the bucket the file lives in (String) fileId - the id of the file itself (String) cb - an optional function that will be registered as a listener for the done event on the returned file object

storj.getFileList(bucketId, function cb(e, files) {})

Get a list of files stored in a bucket on the Storj network. cb will be invoked with an Error first if the operation fails, or null otherwise. files will be an array of meta-data about the files, each element will have the following properties:

{
  id: String, // the id of the file
  name: String, // the name of the file
  mimetype: String // the mime-type of the file
}

storj.deleteFile(bucketId, fileId, function cb(e) {})

Remove a file from the Storj network. cb will be invoked with an Error first if the operation fails, or null otherwise.

File API

file.name

The name of the file.

file.mimetype

The mimetype of the file.

file.length

The length of the file in bytes.

file.progress

A number between 0 and 1 (inclusive) reflecting what percentage of the file has been downloaded from the network. To determine how many bytes have been downloaded, you can multiply file.length by file.progress.

file.on('done', function cb() {})

Emitted when a File has finished either uploading or downloading it's contents.

file.on('ready', function cb() {})

Emitted when the File has finished being setup and is ready to begin transfering data. You can listen for this event if you are planning on tracking the progress of an upload/download.

file.on('error', function cb(e) {})

Emitted when the File encounters an unrecoverable error either during setup or during upload/download. If this is emitted, it is safe to assume the File is in a corrupted state and the upload/download should be restarted from the beginning.

file.on('data', function cb(data) {})

Emitted when data has been downloaded from the network, this can be used for tracking the value of file.progress. The callback will be provided the chunk of data that was pulled over the network.

Note: This event is not yet implemented. Registering the data event will not throw an error, but the event will never be triggered. To track implementation progress, follow issue #72

file.createReadStream()

Create a readable stream to the file. Pieces of the file will become available from the stream as soon as they are downloaded from the network.

file.getBuffer(function cb(e, buffer) {})

Returns a Buffer representation of the file. If the file is downloading when getBuffer is called, the cb will be called with a Buffer as soon as the file finishes downloading.

file.appendTo(rootElem, [opts], [function cb(e, elem) {}]) (BROWSER ONLY)

Show the file in a the browser by appending it to the DOM. This is a powerful function that handles many file types like video (.mp4, .webm, .m4v, etc.), audio (.m4a, .mp3, .wav, etc.), images (.jpg, .gif, .png, etc.), and other file formats (.pdf, .md, .txt, etc.).

The file will be fetched from the network and streamed into the page (if it's video or audio). In some cases, video or audio files will not be streamable because they're not in a format that the browser can stream so the file will be fully downloaded before being played. For other non-streamable file types like images and PDFs, the file will be downloaded then displayed.

rootElem is a container element (CSS selector or reference to DOM node) that the content will be shown in. A new DOM node will be created for the content and appended to rootElem.

If provided, opts can contain the following options:

  • autoplay: Autoplay video/audio files (default: true)
  • controls: Show video/audio player controls (default: true)
  • maxBlobLength: Files above this size will skip the "blob" strategy and fail (default: 200 * 1000 * 1000 bytes)

If provided, callback will be called once the file is visible to the user. callback is called with an Error (or null) and the new DOM node that is displaying the content.

file.appendTo('#containerElement', function (err, elem) {
  if (err) throw err // file failed to download or display in the DOM
  console.log('New DOM node with the content', elem)
})

Streaming support depends on support for MediaSource API in the browser. All modern browsers have MediaSource support.

For video and audio, storj.js tries multiple methods of playing the file:

  • videostream -- best option, supports streaming with seeking, but only works with MP4-based files for now (uses MediaSource API)
  • mediasource -- supports more formats, supports streaming without seeking (uses MediaSource API)
  • Blob URL -- supports the most formats of all (anything the <video> tag supports from an http url), with seeking, but does not support streaming (entire file must be downloaded first)

The Blob URL strategy will not be attempted if the file is over opts.maxBlobLength (200 MB by default) since it requires the entire file to be downloaded before playback can start which gives the appearance of the <video> tag being stalled. If you increase the size, be sure to indicate loading progress to the user in the UI somehow.

For other media formats, like images, the file is just added to the DOM.

For text-based formats, like html files, pdfs, etc., the file is added to the DOM via a sandboxed <iframe> tag.

file.renderTo(rootElem, [opts], [function cb(e, elem) {}]) (BROWSER ONLY)

Like file.appendTo but renders directly into given element (or CSS selector).

file.getBlob(function cb(e, blob) {}) (BROWSER ONLY)

Get a W3C Blob object which contains the file data.

The file will be fetched from the network, and callback will be called once the file is ready. callback must be specified, and will be called with a an Error (or null) and the Blob object.

file.getBlobUrl(function cb(e, url) {}) (BROWSER ONLY)

Get a url which can be used in the browser to refer to the file.

The file will be fetched from the network and callback will be called once the file is ready. callback must be specified, and will be called with a an Error (or null) and the Blob URL (String).

This method is useful for creating a file download link, like this:

file.getBlobURL(function (err, url) {
  if (err) throw err
  var a = document.createElement('a')
  a.download = file.name
  a.href = url
  a.textContent = 'Download ' + file.name
  document.body.appendChild(a)
})

KeyPair API

var key = keypair.getPrivateKey()

Get the private key component of the KeyPair.

var key = keypair.getPublicKey()

Get the public key component of the KeyPair.

var signature = keypair.sign(message)

Sign a message with this key. message should be either a String or a Buffer, and the returned signature will be a String.

var id = keypair.getNodeID()

Get your client's NodeID on the Storj network, which is derived from this KeyPair.

var address = keypair.getAddress()

Return a bitcoin-format address derived from this KeyPair.

Low Level API

The Low Level API isn't actually that low level. The purpose of these methods is to provide tools that are useful when building production Storj.js applications, but that aren't necessary for casual development. These methods may expose primitives, and often sacrifice usability for perfomance.

Note: The Low Level API is not considered stable yet. Please do not develop against this API unless you are willing to deal with breaking changes in future releases. Until otherwise stated, minor and patch releases may ship breaking cheanges to this API.

var stream = storj.download(fileId, bucketId)

Return a readable stream of decrypted data being pulled directly from farmers. This method bypasses the File API entirely, and doesn't use a backend abstract-blob-store. If you only need to download a file once, and don't want to hold onto it in memory, this is the method for you.

storj.download(fileId, bucketId).pipe(fs.createWriteStream('cat.jpg'));

var stream = storj.upload(bucketId, fileName)

Return a writable stream. When written to, the data will be encrypted and uploaded to the storj network.

When it becomes available, stream will emit a done event. This event will contain the metadata for the uploaded file including:

{
  bucket: STRING, // bucketId
  filename: STRING,
  mimetype: STRING,
  id: STRING, // fileId
  size: NUMBER // Size of file on the network
}
fs.createReadStream('cat.jpg').pipe(
  storj.upload(fileId, bucketId)
).on('done', function(metadata) {
  console.log(`Uploading to id: ${metadata.id}`);
})

storj.getFilePointers(fileId, bucketId, function cb(e, pointers) {})

Get all of the information necessary to download a file from the Storj network. The callback will be inovked with an Error if something goes wrong, otherwise it will return an object of the form:

{
  token: [Object], // Information necessary to decrypt files from public buckets
  pointers: [Array] // Information necessary to find farmers with shards
}

While this method is currently exposed, there is no direct way of instructing the Storj.js API to use this when downloading a file from the network.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].