0.0.9 • Published 6 years ago

sharinpix v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Sharinpix client.

Installation

npm install --save sharinpix

Example of code :

Sharinpix = require('sharinpix');
Sharinpix.upload('./sharinpix.jpg', 'super_test').then(function(image){
  console.log(image.public_id);
}, function(error){
  console.log(error);
})

Import from Url

Sharinpix = require('sharinpix');
Sharinpix.import('https://test.sharinpix.com/image.jpg', 'super_test').then(function(image){
  console.log(image.public_id);
}, function(error){
  console.log(error);
})

Authentification :

Set the environement variable SHARINPIX_URL with the url of your secret or call configure like this :

Sharinpix.configure('<Sharinpix-secret-url>');

SharinPix command line tool

Installing SharinPix globally

npm install -g sharinpix

Set environment variable

Run export SHARINPIX_URL="YOUR_SHARINPIX_SECRET_URL" on your terminal or set SHARINPIX_URL permanently to your enviroment variable.

Upload

Run sharinpix upload <image path> <album id> [<json metadatas>] on your terminal.

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

7 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago