Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
ispapi-apiconnector
Advanced tools
This module is a connector library for the insanely fast 1API backend API. For further informations visit our homepage http://1api.net and do not hesitate to contact us.
$ npm install ispapi-apiconnector
var apiconnector = require('ispapi-connector')
, api = apiconnector.Client()
, c;
//optional: set client remote address including remote port, e.g.:
api.setRemoteAddr("1.2.3.4:80");
/** mandantory: set your account name and password for later requests
* NOTE: if not set, credentials of demo user in OT&E (Test) system will be used by default as fallback
* 1st parameter: account name
* 2nd parameter: password
* 3rd parameter: system environment / entity. Use "1234" for OT&E (Testsystem) and "54cd" for Production System
*/
api.login("test.user", "test.passw0rd", "1234");//OT&E demo user
/** optional: set url for api connection
* NOTE: if not set, default connection url will be used
*/
api.connect("https://coreapi.1API.net/api/call.cgi");
//create connection instance to work with
c = api.createConnection({
COMMAND : "StatusUser"
});
//output api response when ready
c.once("response", function(r){
console.dir(r.as_hash());
});
//react on error events
c.on("error", function(e){
console.log(e.message);
});
//perform the request
c.request();
Nothing added yet.
MIT
FAQs
Node.js SDK for the insanely fast HEXONET API
The npm package ispapi-apiconnector receives a total of 7 weekly downloads. As such, ispapi-apiconnector popularity was classified as not popular.
We found that ispapi-apiconnector 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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.