
Company News
Socket Joins the OpenJS Foundation
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.
A partial implementation of the aspsms.com XML SMS API for node.js.
sudo npm install aspsms
setDefaultOptions(options) Sets the default optionssend(options, callback, message) Sends a text messageshowCredits(options, callback, message) Returns the amount of credits leftuserkey Your ASPSMS Uesrkeypassword Your ASPSMS passwordoriginator Name of the senderrecipient Mobile phone number of the recipientIf the operation was successfull the error object passed to the callback will
be null. If the operation fails the error object will contain an errorCode
and an errorDescription field with values according to the aspsms.com
documentation.
Send a text message
var aspsms = require('aspsms');
aspsms.setDefaultOptions({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
'originator' : 'TestApp'
});
aspsms.send({
'recipient' : '+41555123456'
}, function (error) {
if (!error) {
console.log('Success!');
}
}, 'Hello, this is a test.');
Show how many credits you have left
var aspsms = require('aspsms');
aspsms.setDefaultOptions({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
});
aspsms.showCredits({ }, function (error, credits) {
if (!error) {
console.log('You have ' + credits + ' left');
}
});
If you don't want to use setDefaultOptions you can pass all options in each
command.
var aspsms = require('aspsms');
aspsms.send({
'userkey' : 'YOUR_ASPSMS_USERKEY',
'password' : 'YOUR_ASPSMS_PASSWORD',
'originator' : 'TestApp',
'recipient' : '+41555123456'
}, function (error) {
if (!error) {
console.log('Success!');
}
}, 'Hello, this is a test.');
FAQs
Send SMS text messages through aspsms.com
We found that aspsms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.