0.0.5 • Published 7 years ago

belugacdn v0.0.5

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

#Beluga CDN Client ##Please note that this project is in "Work in progress" state - anyhting can change here. At the moment you have an option to list/add/edit/delete sites and SSL certificates.

###Install

npm i belugacdn

###Usage

const cdn = require('belugacdn');
const belugaCdn = new cdn(username, password);

belugaCdn.listSites(function(error, data) {
  if (error) console.log({error});

  console.log({siteList : data});
})

//you can also use promises
belugaCdn.listSites()
  .then(function(data) {
    console.log({data});
  })
  .catch(function(error) {
    console.log({error});
  });

More code v soon.

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago