
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
cl-speakeasy-sdk
Advanced tools
A CenturyLink SpeakEasy API JavaScript SDK. Check out the demo in example/index.html
npm install cl-speakeasy-sdk
See the documentation
for CenturyLink SpeakEasy JavaScript SDK Get Started and Guides. Also you
can run gulp doc
and see generated documentation at /docs/.
To build the CenturyLink SpeakEasy JavaScript SDK source, issue the following commands:
npm install
sudo npm install -g gulp
gulp
to see the list of available tasksgulp build
dumps a plain and a minified file from all files in the folder src
into the folder dist
.gulp clean
removes all files in the folder dist
.gulp doc
generates JSDuck documentation in the folder docs
.gulp test
runs the tests and linting for all files in the folder src
.gulp bump-patch
increases the version by 0.0.1
for the last git commit and pushes the new tag to the remote repository.gulp bump-minor
increases the version by 0.1.0
for the last git commit and pushes the new tag to the remote repository.gulp bump-major
increases the version by 1.0.0
for the last git commit and pushes the new tag to the remote repository.Please see the Getting Started section for details and examples of how to configure the CenturyLink SpeakEasy JavaScript SDK.
This example shows some of the functionality supported by the CenturyLink SpeakEasy JavaScript SDK.
index.html:
<!DOCTYPE html>
<html>
<head>
<title>Usage example for the CenturyLink SpeakEasy JavaScript SDK</title>
<script type="text/javascript" src="speakeasy-0.1.4.js"></script>
</head>
<body>
<script type="text/javascript" src="index.js"></script>
</body>
</html>
index.js:
var username = 'joe';
var password = 'some-secret-pass';
CtlSpeakEasy.Auth.login(username, password, function(error, response) {
if (!error && response) {
console.info('Successfully authenticated. Exposing subscription services selection.');
} else {
console.error('Authentication failed: ', error);
}
});
//...
CtlSpeakEasy.CallManager.createCall('3031234567', false, function(call) {
console.info('Calling 3031234567...');
}, function() {
console.error('Make new call failed!');
});
This project is licensed under the Apache License v2.0.
FAQs
CenturyLink SpeakEasy JavaScript SDK
The npm package cl-speakeasy-sdk receives a total of 2 weekly downloads. As such, cl-speakeasy-sdk popularity was classified as not popular.
We found that cl-speakeasy-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.