riba-sdk
v1.1.4
Published
This is the official Riba Node.js Sdk made with ❤️ from a nice place somewhere in the corner of this planet.
Downloads
3
Readme
Official Riba Node.js SDK
This is the official Riba Node.js Sdk made with ❤️ from a nice place somewhere in the corner of this planet.
1. Installing
To get started is pretty simple and you need either yarn
or npm
to get started.
yarn add riba-sdk
or npm install riba-sdk
2. Usage
To get started, import the Riba
client exposed by the API.
import { Riba } from "riba-sdk";
// create an instance of Riba Client
const client = new Riba(apiKey);
// send the sms
client.send(phoneNumber, message).then((response) => {
console.log(response)
})
Feel free to leave a comment or a remark.