npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@alertwise/alertwise-web-sdk

v1.2.2

Published

AlertWise is a push notification service for web and mobile apps. This SDK makes it easy to integrate your website with AlertWise Push Notifications. https://alertwise.net

Readme

AlertWise Web SDK

NPM version License: MIT

The official AlertWise Web SDK for integrating web push notifications into your website.

AlertWise is a powerful push notification service for web and mobile apps. This SDK makes it incredibly easy to integrate your website with AlertWise, enabling you to engage with your users through timely and relevant push notifications.

Features

  • Easy Integration: Get up and running in minutes with a simple initialization script.
  • Customizable Prompts: Choose from a variety of pre-built, customizable opt-in prompts (Banner, Bell, Pop-up, etc.) to match your site's design.
  • Subscription Widgets: Add persistent widgets to allow users to subscribe or unsubscribe at any time.
  • Audience Segmentation: Group subscribers into segments for targeted messaging.
  • Event Tracking: Track user interactions and trigger automated notification campaigns.
  • Cross-Browser Support: Works seamlessly across all major browsers that support web push notifications.
  • In-App Browser Handling: Gracefully handles scenarios where your site is opened in a social media in-app browser.

Installation

You can integrate the AlertWise Web SDK in two ways: using the CDN or by installing it as an npm package.

1. Using CDN

The easiest way to get started is to add the following script tag to the <head> section of your website's HTML file.


<script src="https://cdn.alertwise.net/alertwise/integrate/service-worker.js" async></script>

2. Using npm/yarn

If you are using a bundler like Webpack or Rollup, you can install the SDK from npm.

  npm install @alertwise/alertwise-web-sdk

or

  yarn add @alertwise/alertwise-web-sdk

Then, import it into your main application file:

import '@alertwise/alertwise-web-sdk';

Quick Start

After installing the SDK, you need to initialize it with your Application ID.

1. Add the Service Worker

Web push notifications require a service worker file.

  1. Download the service-worker.js file from the SDK. You can get it from the CDN link: https://cdn.alertwise.net/alertwise/integrate/service-worker.js.
  2. Place this service-worker.js file in the root directory of your website.

If you cannot place the file in the root directory, you can specify a different path during initialization.

2. Initialize the SDK

Add the following initialization code to your website. If you're using the CDN, place it just before the closing </body> tag.


<script>
    // This array will hold commands until the SDK is fully loaded.
    window.alertwise = window.alertwise || [];

    // Initialize AlertWise with your App ID
    alertwise.push(['init', {
        appId: 'YOUR_APP_ID'
        // Add other configuration options here if needed
    }]);
</script>

Replace 'YOUR_APP_ID' with the Application ID you obtained from your AlertWise dashboard.

That's it! The SDK will now automatically handle showing the opt-in prompt based on the settings you've configured in your AlertWise dashboard.

Configuration

The init command accepts a configuration object with the following options:

| Option | Type | Required | Description | |-------------------------------|-----------|----------|--------------------------------------------------------------------------------------------------| | appId | string | Yes | Your unique Application ID from the AlertWise dashboard. | | serviceWorkerUrl | string | No | The path to your service worker file. Defaults to /service-worker.js. | | scope | string | No | The scope of the service worker registration. Defaults to /. | | isSubscriptionOnSubDomain | boolean | No | Set to true if you are using a custom subdomain for subscriptions. Defaults to false. | | isUniversalSubscriptionLink | boolean | No | Set to true if you are using a universal subscription link. Defaults to false. | | language | string | No | Manually set the language for the prompts, overriding the browser's default. (e.g., 'en', 'es'). | | defaultNotificationImage | string | No | A URL for a default notification icon if one is not provided in a campaign. | | alertwiseApiUrl | string | No | For self-hosted or enterprise plans, you can specify a custom API endpoint. |

Example with more options:

alertwise.push(['init', {
    appId: 'YOUR_APP_ID',
    serviceWorkerUrl: '/custom-sw.js'
}]);

API Reference

Once initialized, you can interact with the SDK using the alertwise global object.

alertwise.push(command)

This is the main method for interacting with the SDK.

  • Initialization: alertwise.push(['init', { appId: '...' }])
  • Function Execution: You can push a function to be executed once the SDK is ready.
alertwise.push(function () {
    console.log('AlertWise SDK is ready!');
    // You can now safely use other API methods
    alertwise.getSubscriberId().then(id => {
        console.log('Subscriber ID:', id);
    });
});

alertwise.subscribe()

Manually trigger the subscription process. This will show the browser's native permission prompt.

// Example: Trigger subscription from a custom button click
document.getElementById('my-subscribe-button').addEventListener('click', function () {
    alertwise.subscribe();
});

alertwise.unsubscribe()

Unsubscribe the current device from receiving push notifications.

alertwise.unsubscribe();

alertwise.getPermission()

Returns a Promise<NotificationPermission> with the current notification permission status ('granted', 'denied', or 'default').

alertwise.getPermission().then(permission => {
    console.log('Current permission status:', permission);
});

alertwise.getSubscriberId()

Returns a Promise<string | undefined> with the unique ID of the current subscriber.

alertwise.getSubscriberId().then(subscriberId => {
    if (subscriberId) {
        console.log('User is subscribed with ID:', subscriberId);
    } else {
        console.log('User is not subscribed.');
    }
});

alertwise.addSegment(segmentId)

Add the current subscriber to one or more segments.

  • segmentId: string | string[] - A single segment ID or an array of segment IDs.
// Add to a single segment
alertwise.addSegment('premium_users');

// Add to multiple segments
alertwise.addSegment(['newsletter_subscribers', 'product_updates']);

alertwise.removeSegment(segmentId)

Remove the current subscriber from one or more segments.

  • segmentId: string | string[] - A single segment ID or an array of segment IDs.
alertwise.removeSegment('premium_users');

Events

The SDK dispatches CustomEvent objects on the window for various actions. You can listen for these events to trigger your own application logic.

| Event Name | Description | |-------------------------------------|---------------------------------------------------------------------------------------------------------------------| | AlertWise.onReady | Fired when the SDK has been successfully initialized. | | AlertWise.onSubscribe | Fired when a user successfully subscribes. The event.detail object contains subscriber and subscription info. | | AlertWise.onUnsubscribe | Fired when a user successfully unsubscribes. | | AlertWise.onPermissionGranted | Fired when the user grants notification permission. | | AlertWise.onPermissionDenied | Fired when the user denies notification permission. | | AlertWise.onNotificationDisplayed | Fired when a notification is displayed to the user. | | AlertWise.onNotificationClick | Fired when a user clicks on a notification. | | AlertWise.onNotificationClose | Fired when a user closes a notification. | | AlertWise.onSDKError | Fired when an error occurs within the SDK. |

Example: Listening for the onSubscribe event

window.addEventListener('AlertWise.onSubscribe', function (event) {
    console.log('User subscribed!', event.detail);
    const subscriberId = event.detail.subscriber.id;
    // You can now associate this subscriberId with your internal user ID
});

License

See the LICENSE file for details.