The node SDK to send SMS with Neno API to Rwandan users
Follow the installation guide here
Import the client from the package like this:
import Client from "@use-neno/node-sdk"or
const Client = require("@use-neno/node-sdk")const nenoClient = new Client(process.env.NENO_API_KEY) // pass in the api key from your project settings... // your existing code
const sendingSms = await nenoClient.sendSMS("example message", ["250788...."])
... // your existing code