
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@mephistopheles1010/bsg-nodejs
Advanced tools
This repository contains the open source Node.js client for BSG API.
access_key
npm install bsg-nodejs
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.createHLR(
{
msisdn: '380972920000',
reference: 'extid1',
tariff: '0',
callback_url: 'http://someurl.com/callback/?id=12345'
}
).then(
HLR => console.log( "HLR created:", HLR ),
error => console.log( "HLR creation failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.createSMS(
{
destination: "phone",
originator:"alpha name",
body:"message text",
msisdn:"380972000000",
reference:"ext_id_16",
validity:"1",
tariff:"0"
}
).then(
SMS => console.log( "SMS created:", SMS ),
error => console.log( "SMS creation failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.createViber(
{
tariff:0,
validity:1,
messages:[
{
to:[
{
msisdn:380972920000,
reference:"ext_id_19"
}
],
text:"My Viber messages is shinier than your SMS messages",
alpha_name:"BSG",
is_promotional:false,
options:{
viber:{
img:"http://mysite.com/logo.png",
caption:"See Details",
action:"http://mysite.com/"
}
}
}
]
}
).then(
viber => console.log( "Viber created:", viber ),
error => console.log( "Viber creation failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getBalance().then(
balance => console.log( "Balance request completed:", balance ),
error => console.log( "Balance request failed", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getHLR(
{
reference: 'extid1'
}
).then(
HLR => console.log( "HLR retrieved:", HLR ),
error => console.log( "HLR retrieval failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getHLRPrices().then(
prices => console.log( "HLR prices retrieved:", prices ),
error => console.log( "HLR prices retrieval failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getSMS(
{
reference: 'ext_id_16'
}
).then(
SMS => console.log( "SMS retrieved:", SMS ),
error => console.log( "SMS retrieval failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getSMSPrices().then(
prices => console.log( "SMS prices retrieved:", prices ),
error => console.log( "SMS prices retrieval failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getViber(
{
reference: 'ext_id_19'
}
).then(
viber => console.log( "Viber retrieved:", viber ),
error => console.log( "Viber retrieval failed:", error )
);
var bsg = require( 'bsg' )( '<YOUR_ACCESS_KEY>' );
bsg.getViberPrices().then(
prices => console.log( "Viber prices retrieved:", prices ),
error => console.log( "Viber prices retrieval failed:", error )
);
Take a look into 'examples' folder for complete list of available calls
FAQs
NodeJS wrapper for the Bulk SMS Solutions API
The npm package @mephistopheles1010/bsg-nodejs receives a total of 1 weekly downloads. As such, @mephistopheles1010/bsg-nodejs popularity was classified as not popular.
We found that @mephistopheles1010/bsg-nodejs 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.