
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
sms-activate
Advanced tools
This package fully supports all the https://sms-activate.org/ API with Typescript types. Fork on sms-activate-org
Install the package using npm
Recommanded:
npm install sms-activate
Or
npm install sms-activate-sdk
import { SMSActivate, SMSNumber } from 'sms-activate';
const api = new SMSActivate('myapikey');
(async () => {
const balance = await api.getBalance();
console.log(`My balance is ${balance}`);
})();
/* Getting a number to activate Gmail services,
* the wrapper automatically resolves country and services names */
// You need got to https://sms-activate.org/en/api2 to get the service and country code
api.getNumber({ service: 'tw', country: 0 }).then(async number: SMSNumber => {
// Do your stuff with number.phoneNumber here,
// like writing in the number field
/** Setting code status to Ready **/
await number.ready(); // or api.setStatus({ id: number.activationId, status: EActivationSetStatus.Ready });
// Press the send sms button
try {
/** Waiting a maximum of 180s for the code to arrive **/
const code = await number.getCode();
// Do your stuff with the code there
/** Setting code status to Success if everything worked as expected **/
await number.success(); // or api.setStatus({ id: number.activationId, status: EActivationSetStatus.Success });
} catch(err) {
console.error(err);
/** Setting code status to Failed if the code was used **/
await number.failed();
}
}).catch(console.error);
FAQs
A full NodeJS API for sms-activate.org
The npm package sms-activate receives a total of 6 weekly downloads. As such, sms-activate popularity was classified as not popular.
We found that sms-activate 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.