New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-clc-sdk

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-clc-sdk

node-clc-sdk

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
2
Created
Source

node-clc-sdk

Node.js API Wrapper for CenturyLink Cloud's API

Installation

This module is published to NPMJS

export CLC_V1_API_KEY="YourCLCPortalAPIKey"
export CLC_V1_API_PASSWD="YourCLCPortalAPIPassword"
export CLC_V2_API_USERNAME="YourCLCPortalUsernameHere"
export CLC_V2_API_PASSWD="YourCLCPortalPasswordHere"

npm install --save node-clc-sdk

The --save tells NPM to automatically add it to your package.json file

Usage

// Import the module
var clc = require('node-clc-sdk');

clc.authentication.login(function(error, response, data){
  if (error) {
    return console.error(error);
  }
  console.log(data)
});

Methods

All methods follow the official API documentation.

If a method uses Query Parameters, please account for them in your parameters. The format for query parameters is "searchTerm1=search&searchTerm2=search" and so on.

Convention for callback arguments: callback(error, response, data)

License

MIT license. See the LICENSE file for details.

Keywords

node-clc-sdk

FAQs

Package last updated on 03 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts