Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

codex-team/capella.nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

capella.nodejs

Image uploader to Capella

Installation

npm install @codexteam/capella-pics --save

Usage

const Capella = require('@codexteam/capella-pics');

let capella = new Capella();

// upload by URL
capella.uploadFileByURL('https://capella.pics/public/app/capella-logo.png', function (resp) {
    console.log(resp);
});

// upload from local path
capella.uploadFile('C:/Users/Capella/Desktop/capella-logo.png', function (resp) {
    console.log(resp);
});

Response

Return Capella response object if everything is ok, otherwise returns Error message.

Response format

Callback argument description

On error

{
   "success": false,
   "message": <message>
}

On success

{
   "success": true,
   "message": <message>,
   "id": <id>,
   "url": <url>
}

Custom endpoint

You can pass a custom endpoint address to the constructor.

let capella = new Capella({
    endpoint: 'https://capella.pics/upload'
});

License

MIT

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •