![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Welcome to Instasent Node.js SDK. This repository contains Node.js SDK for Instasent's REST API.
Verify product is currently deprecated and will be removed in the next release. The same functionality can be easily implemented by sending an SMS. If you need help migrating please contact us
The easiest way to install the SDK is via npm:
$ npm install instasent
Check the examples directory to see working examples of this SDK usage
var instasent = require('instasent')('my-token');
instasent.send_sms.create('Company', '+34666666666', 'test message', function (err, response) {
if (err) {
console.log(err.errors);
return;
}
console.log(response);
});
If you want to send an Unicode SMS (i.e with 😀 emoji) you only need to replace send_sms
call to send_sms_unicode
instasent.send_sms_unicode.create('Company', '+34666666666', 'Unicode test: ña éáíóú 😀', function (err, response) {
if (err) {
console.log(err.errors);
return;
}
console.log(response);
});
SMS
instasent.send_sms.create(sender, to, text, callback)
instasent.send_sms_unicode.create(sender, to, text, callback)
instasent.get_sms.read(page, per_page, callback)
instasent.get_sms_by_id.read(message_id, callback)
LOOKUP
instasent.do_lookup.create(to)
instasent.get_lookup_by_id.read(id)
instasent.get_lookups.read(page, per_page)
ACCOUNT
instasent.get_account_balance.read()
Full documentation of the API can be found at http://docs.instasent.com/
If you need help installing or using the SDK, please contact Instasent Support at support@instasent.com
If you've instead found a bug in the library or have a feature request, go ahead and open an issue or pull request!
FAQs
A Nodejs wrapper library for Instasent's API
The npm package instasent receives a total of 0 weekly downloads. As such, instasent popularity was classified as not popular.
We found that instasent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.