
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
aws-sms-send
Advanced tools
#Â Let's save your :heavy_dollar_sign:
The problem: Classic Amazon – pricing is immediately at Wal-Mart levels. Sending an SMS message is a mere 0.0075 cents. Want to push notify 1 million end-points. Well that’s a 1. All of this quantity 1 for the lowly guy with a credit card. To get this SMS pricing level at Twilio, you’ve got to already be sending 500k text messages a month. The difference doesn’t sound like much. What’s 0.0025 amongst friends.But at the 500k message level that’s a savings of $1,250 a month.! check out the :sparkles: Original article
AWS sms pricing :+1:
npm i aws-sms-send --save
Aws send sms without es6 - babel demo :ok_hand:
var Sender = require('aws-sms-send');
var config = {
AWS: {
accessKeyId: 'xxxxxxxxxx',
secretAccessKey: 'xxxxxxxxxx',
region: 'xxxxxxxxxx',
},
topicArn: 'xxxxxxxxxx',
};
var sender = new Sender(config);
/* Create subscribe */
// sender.createSubscribe('+905054146201')
// .then(function(response) {
// console.log(response);
// })
// .catch(function(err) {
// console.log(err)
// });
/* Send topic sms */
// sender.sendSms('Sms body topic', 'Topic sms', true)
// .then(function(response) {
// console.log(response);
// })
// .catch(function(err) {
// console.log(err)
// });
/* Send direct sms */
// sender.sendSms('Sms body direct', 'Topic sms', false, '+905054146201')
// .then(function(response) {
// console.log(response);
// })
// .catch(function(err) {
// console.log(err)
// });

Maintenance & Development Çağatay Çalı
FAQs
Aws sms sender
The npm package aws-sms-send receives a total of 66 weekly downloads. As such, aws-sms-send popularity was classified as not popular.
We found that aws-sms-send 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.