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

slashq_widget_dev

v1.0.13

Published

widget to manage token based appoinments.

Readme

#SlashQ

SlashQ is an appointment scheduling and queue management tool that helps you to manage customer flow. With SlashQ you can eliminate lines and improve customer satisfaction while avoiding congestion and ensuring social distancing.

##Description

SlashQ provides you with a portal where customers can book an appointment online. Each store outlet will be provided with a separate portal. You have the flexibility to manage time slots and capacity per slot by outlet. You can also review the appointments scheduled for your store.

Customers select a slot based on availability and get a confirmation via SMS with the token number, a QR code and other details. They show up at your store, scan the code and check in at the scheduled time

##Registration steps

Businesses can create a slashQ account from the signup page. You need to enter information like business name, email address, business address, phone number, and password. Once the signup process is completed you will be directed to the business details page, where you can manage your business details and appointment details.

##Widget configuration

Businesses can configure a javascript widget from the settings page. In the settings page, you can configure the widget attributes such as widget button width, height, color, button text, button text color, etc to match with your application. Once the configuration is set up, you can copy the widget code from the page and paste it in your application.

##Get an API key

Businesses can generate an API key from the setting page. The API key is needed for all requests to the slashQ API platform.

##installation and usage

  • Install
npm i slashq_widget_dev
  • Import the module into your project
import ‘slashq_widget’
  • Invoke the widget using the SlashqWidget object
window.SlashqWidget.init({
  width: "100%",
  height: "100%",
  text: "Book An Appointment",
  font_size: "1.2rem",
  font_color: "#ffffff",
  bg_color: "red",
  container: "test-element",
  api_key: "your Slashq API Key",
});

Note:

  • The api_key is mandatory to invoke the widget. Get your API Key from SlashQ admin settings.
  • The custom invotion should be enabled in the SlashQ admin settings page, else default settings will be applied.