Skip to content

ikenfin/smsaero-v2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMSAero V2

SMSAero V2 client written in TypeScript.

Install

npm i smsaero-v2 or yarn add smsaero-v2

Usage

Sending sms example:

import {Client, Message} from "smsaero-v2";

// create a client instance with login/key
// and pass a timeout option (optional)
const client = new Client("login", "key", {timeout: 15000});
(async function () {
	const res = await api.send(new Message({
	  sign: "SMS Aero",
	  number: "79991112233", // num or [num1, num2, ...numN]
	  text: "Test message"
	}));

	console.log(res)
})();

Output format described in interfaces or SMSAero documentation.

API

See TypeScript interfaces.

About

SMSAero v2 API client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.8%
  • Shell 1.2%