
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
helliomessaging-nodejs
Advanced tools
A Node.js package for integrating with Hellio Messaging API. This package provides functionalities for sending SMS, generating OTP, performing number lookup, checking delivery reports, checking sms and voice pricing and checking account balance.
A Node.js package for integrating with Hellio Messaging API. This package provides functionalities for sending SMS, generating OTP, performing number lookup, checking delivery reports, checking sms and voice pricing and checking account balance.
Describe the installation steps required to set up and run your project. Include any dependencies and prerequisites.
npm install hellio-messaging
const HellioMessaging = require("hellio-messaging");
// Initialize the Hellio Messaging client
const client = new HellioMessaging({
clientId: "yourClientId",
applicationSecret: "yourApplicationSecret",
});
// Send an SMS
const smsParams = {
senderId: "yourSenderId",
msisdn: "recipientPhoneNumber",
message: "Hello, World!",
};
client
.sendSMS(smsParams)
.then((response) => {
console.log("SMS sent successfully:", response);
})
.catch((error) => {
console.error("Failed to send SMS:", error);
});
// Generate OTP
const otpParams = {
mobile_number: "recipientPhoneNumber",
timeout: 60,
message: "Your verification code is: {OTP}",
senderId: "yourSenderId",
tokenlength: 6,
recipient_email: "recipientEmail",
messageType: 0,
};
client
.sendOTP(otpParams)
.then((response) => {
console.log("OTP sent successfully:", response);
})
.catch((error) => {
console.error("Failed to send OTP:", error);
});
// Verify OTP
const verifyParams = {
mobile_number: "recipientPhoneNumber",
otp: "otpCode",
};
client
.verifyOTP(verifyParams)
.then((response) => {
console.log("OTP verification successful:", response);
})
.catch((error) => {
console.error("OTP verification failed:", error);
});
// Perform number lookup
const lookupParams = {
msisdn: "phoneNumber",
reference: "campaignName",
};
client
.numberLookup(lookupParams)
.then((response) => {
console.log("Number lookup result:", response);
})
.catch((error) => {
console.error("Number lookup failed:", error);
});
// Get routing price
const routingParams = {
country_code: "GH",
service_name: "sms", //sms or voice
};
client
.getRoutingPrice(routingParams)
.then((response) => {
console.log("Routing price:", response);
})
.catch((error) => {
console.error("Failed to retrieve routing price:", error);
});
// Check delivery report
const reportParams = {
startDate: "startDate",
endDate: "endDate",
senderId: "yourSenderId",
deliveryStatus: "DELIVRD",
};
client
.checkDeliveryReport(reportParams)
.then((response) => {
console.log("Delivery report:", response);
})
.catch((error) => {
console.error("Failed to check delivery report:", error);
});
// Check account balance
client
.checkBalance()
.then((balance) => {
console.log("Account balance:", balance);
})
.catch((error) => {
console.error("Failed to check account balance:", error);
});
For more details on the available methods and parameters, please refer to the Hellio Messaging Node.js package documentation.
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT
Feel free to customize the README.md file further to add additional details specific to your project, such as examples, usage guidelines, and any other relevant information.
FAQs
A Node.js package for integrating with Hellio Messaging API. This package provides functionalities for sending SMS, generating OTP, performing number lookup, checking delivery reports, checking sms and voice pricing and checking account balance.
We found that helliomessaging-nodejs 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.