sharinpix
Version:
SharinPix Client
54 lines (34 loc) • 1.08 kB
Markdown
# Sharinpix client.
## Installation
```npm install --save sharinpix```
Example of code :
``` javascript
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
``` javascript
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.