![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.
@plunk/node
Advanced tools
This project contains the helper library for interacting with the Plunk API using Node.js.
Installing the latest version can be done through your package manager.
npm i @plunk/node
yarn add @plunk/node
Any interaction you want to make with the Plunk API needs to be done through the Plunk client. You can use a default import to get started.
import Plunk from '@plunk/node';
const plunk = new Plunk("Your secret key");
Used to publish an event
event
: The name of the event to publishemail
: The email address of the user to publish the event todata
[Optional]: An object containing the data to attach to the userconst success = await plunk.events.track({
event: "new-project",
email: "hello@useplunk.com",
data: {
company: "Plunk"
}
});
Used to send a transactional email
to
: The email address of the recipientsubject
: The subject of the emailbody
: The body of the email (HTML, plain text, or Markdown)from
[Optional]: The email address of the sendername
[Optional]: The name of the senderwithUnsubscribe
[Optional]: Whether to include an unsubscribe link hosted by Plunk in the emailconst success = await plunk.emails.send({
to: "hello@useplunk.com",
subject: "Welcome to Plunk",
body: "# Hello world!",
});
FAQs
Official Node.js library for useplunk.com
The npm package @plunk/node receives a total of 0 weekly downloads. As such, @plunk/node popularity was classified as not popular.
We found that @plunk/node 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.
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.