
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
verimor-node-sdk
Advanced tools
The node client for verimor api.
This repository is a rest client written in node for verimor api. REST documentation can be found at: https://github.com/verimor/SMS-API
npm i verimor-node-sdk
There are many endpoints available in the official api. This library contains only sending sms.
Get client:
const sdk = require('verimor-node-sdk')
const client = sdk.createClient({
username: '',
password: ''
})
Send:
const payload = {
source_addr: '' /* Your registered phone number or title */,
messages: [
{
msg: 'Hello. This is a test message.',
dest: '905556667788,905557778899'
}
]
}
const result = await client.send(payload)
if (result.error) {
// fail, read the error message in result.error
}
else {
// success
const id = result.id
}
Tests are written in tests folder and can be run with npm test
. You need to create your own credentials file in credentials/credentials.json
Thanks for watching 🐬
FAQs
The node client for verimor api.
We found that verimor-node-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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.