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 🙏

© 2024 – Pkg Stats / Ryan Hefner

met-generate-int

v2.8.50

Published

return a random int between two int numbers

Downloads

50

Readme

Arad Push Notification system (APN)

You can use this sdk in node.js applications such as ReactJS, VueJS or AngularJS.

Before start (IMPORTANT)

You need The firebase configuration object and vapidKey before initialize APN sdk.

— Firebase Configuration

  1. Create a Firebase project: Open the Firebase console and click on “Add project”. Follow the instructions to create your project.
  2. Get your Firebase configuration: After your project is created, click on the gear icon next to “Project Overview” and select “Project settings”. Here, you’ll find your Firebase SDK snippet under the “General” tab. It will look something like this:
const firebaseConfig = {
 apiKey: "AIzaSy...",
 authDomain: "your-project-id.firebaseapp.com",
 databaseURL: "https://your-project-id.firebaseio.com",
 projectId: "your-project-id",
 storageBucket: "your-project-id.appspot.com",
 messagingSenderId: "sender-id",
 appId: "app-id",
 measurementId: "G-measurement-id",
};

— VAPID Key

  1. Enable Cloud Messaging in your Firebase project: In the Firebase console, navigate to “Cloud Messaging” under the “Grow” section. Here, you can enable Firebase Cloud Messaging for your project.
  2. Get your VAPID key: After enabling Cloud Messaging, you’ll find your VAPID key under the “Cloud Messaging” settings. It will be labeled as “Web Push certificates”. It will look something like this:
const vapidkey = 'BB0rUaCvQVl1NA9sENxz9y...'

Installation

Always get the latest version with the following command:

npm install met-generate-int

Import

import APN from ‘met-generate-int’

How to use

After getting the firebaseConfig and vapidKey try to create an object of APN in your App.js (react) or App.vue (vuejs) and start coding:


  const firebaseConfig = {
    apiKey: "AIzaSy...",
    authDomain: "your-project-id.firebaseapp.com",
    databaseURL: "https://your-project-id.firebaseio.com",
    projectId: "your-project-id",
    storageBucket: "your-project-id.appspot.com",
    messagingSenderId: "sender-id",
    appId: "app-id",
    measurementId: "G-measurement-id",
  };
  const vapidkey = 'BB0rUaCvQVl1NA9sENxz9y...';

  // create apn object from APN
  const apn = new APN();

  //  initialize apn ↓
  apn.init(firebaseConfig, vapidKey).then(() => {
    console.log('Initialize successful');
    apn.setKey('arad-secret-key');
    if (!apn.checkConfig()) {
      apn.setConfig('clientUserName', 'clientPassword', 'connectionURL');
    }
  }).catch((error) => {
    console.error('Error: ', error);
    // here you can handle retry to call apn.init()
  });

  // this will listen to notifications
  apn.on('message', (message) => {
    console.log('notification: ', message);
    // do something with notification data
  });

Background Notification

The firebase-messaging-sw.js file is a service worker file used by Firebase Cloud Messaging (FCM) to handle the receiving and displaying of push notifications in the background, even when your web app is not currently open in the browser. Here’s how you can use it in your web projects:

  1. Create the Service Worker File: Create a new file named firebase-messaging-sw.js in the public folder of your project. The public directory is the root of your server, and the service worker file must be located at the root level to have control over all the pages of your site.
  2. Initialize Firebase in the Service Worker: In the firebase-messaging-sw.js file, you’ll need to initialize Firebase and the messaging service. Here’s a basic example:
// Import and configure Firebase
importScripts('https://www.gstatic.com/firebasejs/10.7.1/firebase-app-compat.js');
importScripts('https://www.gstatic.com/firebasejs/10.7.1/firebase-messaging-compat.js');

const firebaseConfig = {
 apiKey: "AIzaSy...",
 authDomain: "your-project-id.firebaseapp.com",
 databaseURL: "https://your-project-id.firebaseio.com",
 projectId: "your-project-id",
 storageBucket: "your-project-id.appspot.com",
 messagingSenderId: "sender-id",
 appId: "app-id",
 measurementId: "G-measurement-id",
};

// Retrieve an instance of Firebase Messaging
// so that it can handle background messages.
const messaging = firebase.messaging();

messaging.onBackgroundMessage((payload) => {
 self.registration.showNotification(notificationTitle,
   notificationOptions);
});

Methods in Arad

| Method | Info | | ------------- | ------------- | | init(firebaseConfig, vapidKey) | initialize sdk width firebaseConfig (object) and vapidKey (string) promise | | setKey(key) | set a secretKey to ecnrypt configs void | | checkConfig() | check if configs defined and valid boolean | | setConfig() | set connection data void | | getToken() | return firebase token string (return null before initilize complete) |

Methods in DeviceUtils

| Method | Info | | ------------- | ------------- | | getOs() | returns OS name string | | getBrowser() | returns browser name string |

Events

| Event | Info | | ---------- | ---------- | | WakeUp | trigger when a message received from firebase, here you should call apn.getMessage() apn.on('WakeUp', () => apn.getMessage()) | | MessageReceive | trigger when a message received from server, here you should handle and show message in your application apn.on('MessageReceive', (message) => handleNotification(message)) |