![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.
@narando/event-producer
Advanced tools
Helps producing events to the Event System (SNS).
This README describes the package in-detail. See here for a more complete overview of the Event System.
You need to have nodejs
and npm
installed.
$ npm install @narando/event-producer
First you need to import the package.
import EventProducer from "@narando/event-producer";
You need to set your AWS credentials and SNS settings for this package to work.
Below you can find an example config.js.
{
"aws": {
"auth": {
"accessKeyId": "",
"secretAccessKey": ""
},
"sns": {
"arn": "",
"region": "eu-central-1"
}
}
}
The
arn
of the sns topic you want to send your messages to (depends on the env)
Also you need to set a title, you can do this via the logger object or app variable.
{
"logger": {
"title": "api"
}
}
or
{
"app": "api"
}
Emitting an event can be done by calling .event()
on the Event Producer object.
EventProducer.event(req, "user", "created", userId);
Required Parameters:
{Object}
Express request object that initiated the event (can be null){String}
Object that got interacted with{String}
Description of the event{String}
Id of the Object that got interacted withOptional Parameters:
{Object}
Any other data that should be sendAs this package is part of the toolkit monorepo, please refer to the top-level README to learn about hacking on this package.
FAQs
push events to sns
The npm package @narando/event-producer receives a total of 2 weekly downloads. As such, @narando/event-producer popularity was classified as not popular.
We found that @narando/event-producer 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.