
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
MagFa is a SMS provider.
So, let's have a quick review of our steps.
To install MagFa SDK use npm
command like below:
$ npm i magfa-sdk
Now you installed package. You need to initial it. Just require it and use MagFa
class with 3 values.
const MagFa = require("magfa-sdk");
const sms = new MagFa("username", "password", "domain");
This SDK has 3 main methods.
balance
messages
send
Balance just return you how much money your account has.
const balance = await sms.balance();
if (balance.status === 0) {
console.log({ balance: balance.balance });
} else {
console.log({ message: sms.error(balance.status) });
}
To get input messages use this method.
const messages = await sms.messages();
if (messages.status === 0) {
console.log(messages.messages);
} else {
console.log({ message: sms.error(messages.status) });
}
Now you want to send a message, or many messages. Ok, have fun with this method!
const recipients = ["09014784362", "09363158232"];
const messages = ["Hey", "Hi"];
const send = await sms.send(recipients, messages);
if (send.status === 0) {
console.log(send.messages);
} else {
console.log({ message: sms.error(send.status) });
}
When you send a message, you will check that is message arrived or not or anything like this. So, use status method that return you the status of the message.
const status = await sms.status("120990667412");
if (status.status === 0) {
console.log(status.dlrs);
} else {
console.log({ message: sms.error(status.status) });
}
Magfa has some errors and we created an error method that get code from you and return the message.
const message = sms.error("status code");
If you want to develop the package, it is so simple. just follow steps below.
$ npm install
Before you start: **Remember the base or code are stored in
lib/magfa.js
. You need to edit there.
To clone the project, you need to have git installed. Ok, now clone it same as command below.
$ git clone https://gitlab.com/BlackIQ/magfa-sdk
Next, install what package uses with npm i
or npm install
.
$ npm i
To change package or anything, your need a testing environment to use linked package. Just follow steps.
We asoume you are in lib
directory. Right. You can open a tmux or in another terminal to cd in test
directory.
In lib
directory enter link command:
$ npm link
So, in other terminal, or other tmux part, link your development package to your test
directory. If you are in the test
directory ok, if not, just say cd test
and enter the linking command:
$ npm link magfa-sdk
Linking step is done.
Your test app is linked. Change anything in package and test it in test
directory.
status
method.error
method.FAQs
MagFa SMS System SDK
The npm package magfa-sdk receives a total of 2 weekly downloads. As such, magfa-sdk popularity was classified as not popular.
We found that magfa-sdk 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.