Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@bandwidth/node-bandwidth-extra
Advanced tools
Helper functions and middlewares for node-bandwidth. Read more documentation here.
Run
npm install @bandwidth/node-bandwidth-extra
const {application, phoneNumber} = require("@bandwidth/node-bandwidth-extra");
const appId = await application.getOrCreateApplication(api, 'My app', 'my.domain.com'); // It will return exisitng application Id or create it otherwise
const number = await phoneNumber.getOrCreatePhoneNumber(api, appId, {name: 'Support', areaCode: '910'}); // It will reserve a linked to this app phone number and assign name to it. If number with such name already exists it returns it.
const {middlewares} = require("@bandwidth/node-bandwidth-extra");
const app = new Koa();
app.use(middlewares.koa({
name: 'My app', // application name on Bandwidth server
auth: {userId: 'bandwidthUserId', apiToken: 'bandwidthApiToken', apiSecret: 'bandwidthSecret'}, // Bandwidth auth data
phoneNumber: { // Options to reserve phone number
phoneType: 'local',
areaCode: '910'
},
callCallback: async (data, ctx) => {
// Handle calls events here
if(data.eventType === 'answer' && ctx.phoneNumber === data.to){
console.log('Answered');
}
}
}));
app.use(async (ctx, next) => {
console.log(ctx.phoneNumber); // calls and messages to this phone number will be handled by this web app
await next();
});
const {middlewares} = require("@bandwidth/node-bandwidth-extra");
const app = express();
app.use(middlewares.express({
name: 'My app', // application name on Bandwidth server
auth: {userId: 'bandwidthUserId', apiToken: 'bandwidthApiToken', apiSecret: 'bandwidthSecret'}, // Bandwidth auth data
phoneNumber: { // Options to reserve phone number
phoneType: 'local',
areaCode: '910'
},
callCallback: async (data, req) => {
// Handle calls events here
if(data.eventType === 'answer' && req.phoneNumber === data.to){
console.log('Answered');
}
}
}));
app.use((req, res, next) => {
console.log(req.phoneNumber); // calls and messages to this phone number will be handled by this web app
next();
});
FAQs
Extra functions and middlewares for node-bandwidth
We found that @bandwidth/node-bandwidth-extra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.