
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@brighthustle/adonisjs-whatsapp
Advanced tools
This package makes it easy for developers to access the WhatsApp Cloud API service in the AdonisJS 5 application.
Please create and configure your Facebook WhatsApp application by following the "Get Started" section of the official guide.
Install the package using npm or yarn:
npm i @brighthustle/adonisjs-whatsapp
# or
yarn add @brighthustle/adonisjs-whatsapp
Then, configure the package using the configure command:
node ace configure @brighthustle/adonisjs-whatsapp
After executing the above command, a config/whatsapp.ts
file will be created, where you can define the WhatsApp Cloud API.
An important step is to set environment variables in your .env
and validate them in the env.ts
file.
WABA_PHONE_ID: Env.schema.string(),
WABA_ID: Env.schema.string(),
WABA_TOKEN: Env.schema.string(),
WABA_VERIFY: Env.schema.string(),
The package supports events that are triggered when receiving a webhook from WhatsApp, some of which can be seen here.
The event can be subscribed to via the start/whatsapp.ts file.
// start/whatsapp.ts
import WhatsApp from '@ioc:Adonis/Addons/WhatsApp'
WhatsApp.on('message:text', function (message) {
// TODO: do whatever you want
})
To send text, images, and more, use the same singleton in your preload or controller file.
// app/Controllers/Http/ExampleController.ts
import WhatsApp from '@ioc:Adonis/Addons/WhatsApp'
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
export default class ExampleController {
public async example(_ctx: HttpContextContract) {
await WhatsApp.sendText(0000000000, 'Lorem ipsum dolor sit amet.')
}
}
Please see the CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see LICENSE file for more information.
This package is not officially maintained by Facebook. WhatsApp and Facebook trademarks and logos are the property of Meta Platforms, Inc.
This package is modified from the original package https://github.com/sooluh/adonisjs-whatsapp Written By : sooluh
FAQs
Connect your WhatsApp Cloud API with AdonisJS
We found that @brighthustle/adonisjs-whatsapp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.