Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@ovh-api/sms
Advanced tools
This module contains all typing needed to use OvhCloud sms APIs, with hi-level IntelliSense / Code Completion
With npm:
npm install --save @ovh-api/api
npm install --save @ovh-api/me
npm install --save @ovh-api/sms
... Add all APIs you needs
import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api/me';
import apiSms from '@ovh-api/sms';
const ovhEngine = new OvhEngine({
certCache: './cert-cache.json', // optional cache certificat on disk.
accessRules: 'GET /sms, GET /sms/*, GET /me', // optional limit the requested privileges.
});
const api = {
me: apiMe(ovhEngine),
sms: apiSms(ovhEngine),
}
const test = async () => {
const { nichandle } = await api.me.$get();
const data = await api.sms.$get();
console.log(`${nichandle} have the following services:`);
console.log(data);
}
FAQs
Add typing to to ovh api sms
The npm package @ovh-api/sms receives a total of 15 weekly downloads. As such, @ovh-api/sms popularity was classified as not popular.
We found that @ovh-api/sms demonstrated a healthy version release cadence and project activity because the last version was released less than 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.