
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
The official package for Pling. Pling is a cloud based logging service for aggregating, grouping and displaying logs from across your entire stack - frontend / backend / iot devices / games / ... or maybe just so you can track the oxygen in the office! It
The official package for Pling. Pling is a cloud based logging service for aggregating, grouping and displaying logs from across your entire stack - frontend / backend / iot devices / games / ... or maybe just so you can track the oxygen in the office! It is the easiest way to keep collegues, clients, stakeholders and yourself in the loop of what's going.
This package is a simple helper so you can easily integrate the Pling API into your existing applications. I've provided an example with create-react-app and a basic express app.
Implemeting it is quite easy. First install it.
yarn add pling
Importing the package
const notify = require("pling");
Copy and paste the following where you'd like to log something.
await notify({
key: process.env.PLING_API_KEY,
title: "Pling from the package!",
description: "👋 👋 👋 👋"
});
Please make sure to set your PLING_API_KEY environment variable. In Node, you can do so by doing the following.
process.env[PLING_API_KEY] = "YOUR_API_KEY";
Importing the package
import notify from "pling";
Copy and paste the following where you'd like to log something.
await notify({
key: process.env.PLING_API_KEY,
title: "Pling from the package!",
description: "👋 👋 👋 👋"
});
Please make sure to set your PLING_API_KEY environment variable.
In create react app, you can do so by creating a .env file in the root and specifying the following. Make sure to change the PLING_API_KEY to REACT_APP_PLING_API_KEY
REACT_APP_PLING_API_KEY=YOUR_API_KEY_HERE
FAQs
The official package for Pling. Pling is a cloud based logging service for aggregating, grouping and displaying logs from across your entire stack - frontend / backend / iot devices / games / ... or maybe just so you can track the oxygen in the office! It
We found that pling 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.