
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@tilli-pro/nudge.js
Advanced tools
A nudge in time saves nine
The nudge.js SDK is a lightweight (ZERO dependencies) wrapper around nudge and its APIs.
The nudge.js SDK clients come in 2 flavors:
To use the nudge.js SDK you need either an API key (for sending real-time nudges via the "Send" client) or the user credentials used to log into app.nudge.net (all other functionality).
[!TIP] If you're not sure how to get an API key, you can read more here: Nudge API Documentation
In either case, getting started is the same:
import { createSendClient, createClient } from "@tilli-pro/nudge.js";
const apiKey = ""; // get this from the nudge dashboard
const sendClient = createSendClient({ apiKey });
// credentials used to login to app.nudge.net
const authCredentials = {
email: "",
password: "",
};
const client = createClient({ apiKey, authCredentials });
The clients can be used immediately for sending real-time nudges:
sendClient.send({
nudgeId: "1234" // you can get this from the nudge dashboard,
recipient: {
email: "ibrahims@tilli.pro",
name: "Ibrahim Ali", // OPTIONAL
},
options: { // OPTIONAL
cc: ["michaelv@tilli.pro"] // OPTIONAL
bcc: ["avdhoots@tilli.pro"] // OPTIONAL
},
mergeTags: { // OPTIONAL
productName: "tilliX",
},
files: [ // OPTIONAL
new File(["test_document_text"], "test_document.txt", { type: "text/plain" }),
],
})
That's it. Your nudge has been sent.
FAQs
> A nudge in time saves nine
We found that @tilli-pro/nudge.js demonstrated a healthy version release cadence and project activity because the last version was released less than 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.