Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
A set of tools to integrate with the Cisco Telepresence Endpoint APIs in JavaScript.
const jsxapi = require('jsxapi');
// Connect over ssh to a codec
const xapi = jsxapi.connect('ssh://host.example.com', {
username: 'admin',
password: 'password',
});
// Handle errors
xapi.on('error', (err) => {
// !! Note of caution: This event might fire more than once !!
console.error(`xapi error: ${err}`);
});
// Set up a call
xapi.command('Dial', { Number: 'user@example.com' });
// Fetch volume and print it
xapi.status
.get('Audio Volume')
.then((volume) => { console.log(volume); });
// Set a configuration
xapi.config.set('SystemUnit Name', 'My System');
// Listen to feedback
const off = xapi.event.on('Standby', (event) => {
// ...
});
// De-register feedback
off();
The full API documentation can be built by running npm install
in a jsxapi
module directory. Documentation will be located under docs/
can then be opened
in a browser.
More specifically:
mkdir tmp
cd tmp
npm install jsxapi
cd node_modules/jsxapi
npm install
Then open ./docs/index.html
.
Questions about the xAPI, integrations and customizations? Join the xAPI Devs Spark Space community for realtime support here.
Making a release is quite simple:
npm help semver
).npm version
with the appropriate version bump.npm publish
to push the package version to the registry.Alternatively, use yarn publish
1
v4.3.0 (2019-05-23)
config.set
tsh
backendxapi
instance when invoking the ready
event handlerFAQs
JavaScript bindings for XAPI
The npm package jsxapi receives a total of 0 weekly downloads. As such, jsxapi popularity was classified as not popular.
We found that jsxapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.