Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Table of Contents
Wrapper around Push and Notifications API. Handles subscription and unsubscription. Provides some useful methods.
Needs service worker to be installed in any way. Provides an interface to perform service worker installation if needed.
You can find a basic example application including manifest.json and fully commented service worker in the example
folder.
To run the app use npm run local
command and navigate to http://localhost:5001.
import Push from 'push-js';
const push = new Push(); // All arguments are optional
push.subscribe().then(subscription => {});
push.unsubscribe().then(() => {});
There is a simple service worker provided with this package. It's needed to make notification events to work properly. You may use it as is, but the best way is to import it in your service worker, as shown in the example.
An options object that can contain some callbacks and a path to the service worker.
stateChangeCb
: receives state and an Error object if an error occurred.subscriptionUpdateCb
: receives subscription object (PushSubscription).logCb
: receives anything that should be logged.Creates and returns new subscription if it does n't exist, returns old otherwise.
Tries to unsubscribe. Returns resolved Promise anyway.
Returns permission state. See ./source/constants/states.js
.
Requests user permission to show notifications. Returns resolved or rejected Promise depending on user decision.
Checks browser support and returns Boolean.
Same as PushManager.getSubscription().
Accepts two parameters, same as new Notification
constuctor does. See MDN for the description.
Shows notification via service worker. Returns Promise resolved with corresponding Notification object.
FAQs
Push and Notifications API wrapper.
The npm package push-js receives a total of 21 weekly downloads. As such, push-js popularity was classified as not popular.
We found that push-js 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.