Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@magicbell/webpush
Advanced tools
This package provides a convenient interface to subscribe to browser/web push notifications using MagicBell.
Install the package with npm:
npm install @magicbell/webpush --save
or yarn:
yarn add @magicbell/webpush
Note that some of our endpoints used for push subscriptions, require a JWT for authentication. This is because we often want to show the "enable push subscriptions" button in a dialog (window.open
), but we don't want to expose the userMac
to the client via browser history. Therefore, we need to authenticate the request with a JWT token, which expires and thereby is relatively safe to expose to the client via the address bar.
Use the getAuthToken
request to exchange the API Key based credentials for a JWT based token. Then use the subscribe
request to subscribe the user to push notifications.
To get a JWT token, you need to authenticate against the MagicBell API. You can do this by using your API key and user credentials. You only need to provide either userEmail
or userExternalId
and optionally - but recommended - userHmac
. The latter is used for HMAC authentication.
import { getAuthToken } from '@magicbell/webpush';
// authenticate user by external id
getAuthToken({
apiKey: '024…0bd',
userExternalId: 'user_123',
userHmac: 'NCI…I6M',
});
// or based by their email address
getAuthToken({
apiKey: '024…0bd',
userEmail: 'person@example.com',
userHmac: 'NCI…I6M',
});
apiKey String
Your MagicBell API key. You can find it in the MagicBell dashboard.
userEmail String
The email address of the user you want to authenticate. Required if no userExternalId
is provided.
userExternalId String
The external ID of the user you want to authenticate. Required if no userEmail
is provided.
userHmac String
The HMAC signature of the user you want to authenticate. Required if you want to use HMAC authentication.
Subscribe the user to push notifications. This method will register a service worker if it isn't already registered. The service worker will be registered at the path provided in the serviceWorkerPath
option. If the service worker is already registered, it will be used to subscribe the user.
import { subscribe } from '@magicbell/webpush';
subscribe({
token: 'jwt-token',
project: 'string',
serviceWorkerPath: '/sw.js',
});
token String
The JWT token you received from the MagicBell API. This token is used to authenticate the request.
project String
The random subdomain that MagicBell generated for your service worker registration.
serviceWorkerPath String
The path to the service worker file. Defaults to /sw.js
.
A helper that can be used to register a service worker, prior to calling subscribe
. This preflight allows for a faster
subscription process. If this method isn't used, registration will be done during subscribe
.
Registration will be skipped if a service worker is already registered. In which case, the active registration will be returned.
The returned promise resolves when the registration is ready.
import { registerServiceWorker } from '@magicbell/webpush';
registerServiceWorker({
path: '/sw.js',
});
path String
The path to the service worker file. Defaults to /sw.js
.
To speedup the subscription process, you can prefetch the config. This will separate the subscription from config fetching, and thereby reduce the time to subscribe. The method requires the same options as subscribe
.
import { prefetchConfig } from '@magicbell/webpush';
prefetchConfig({
token: 'jwt-token',
project: 'string',
serviceWorkerPath: '/sw.js',
});
Check if the user is subscribed to push notifications in the current browser.
import { isSubscribed } from '@magicbell/webpush';
const subscribed = await isSubscribed({
token: 'jwt-token',
project: 'string',
});
if (subscribed) {
// Do something
} else {
// Do something else
}
New features and bug fixes are released on the latest major version of the magicbell
package. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.
Credit where credits due, this package is inspired by and based on the Stripe Node.js SDK.
FAQs
MagicBell WebPush SDK
The npm package @magicbell/webpush receives a total of 2,026 weekly downloads. As such, @magicbell/webpush popularity was classified as popular.
We found that @magicbell/webpush 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.