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

niconizer-slack

v3.1.19

Published

CLI that watch slack messages and send to niconizer.

Readme

niconizer-slack

test workflow release workflow Renovate enabled npm

Installation

$ npm i -g niconizer-slack

Slack App Setup

To use niconizer-slack, you need to create a Slack App. You can use the provided manifest file to quickly set up the app:

  1. Go to Slack API: Your Apps and click "Create New App"
  2. Choose "From an app manifest"
  3. Select your workspace
  4. Copy the contents of niconizer-slack-manifest.json and paste it into the JSON tab
  5. Review and create the app
  6. After creation, go to "OAuth & Permissions" and install the app to your workspace
  7. Copy the "Bot User OAuth Token" (starts with xoxb-) - this is your -t/--token
  8. Go to "Basic Information" > "App-Level Tokens" and create a token with connections:write scope
  9. Copy this token (starts with xapp-) - this is your -a/--app-token

The manifest configures the app with:

  • Socket Mode enabled (required for the app)
  • All necessary bot scopes for reading messages and user information
  • Event subscriptions for message and emoji changes

Usage

Usage: niconizer-slack [options]

Options:
  -t, --token <token>                 slack bot/user token (env: SLACK_TOKEN)
  -a, --app-token <token>             slack app token (env: SLACK_APP_TOKEN)
  -u, --url <url>                     websocket server url (default: "ws://localhost:25252")
  -c, --channel <channel>             slack channel name/id to listen
  -C, --exclude-channels <channel...> slack channel name/id to exclude
  -U, --exclude-users <user...>       slack user name/id to exclude
  -T, --no-thread                     exclude thread reply
  -B, --no-bot                        exclude bot user
  --show-username                     show username in the message
  -L, --no-logging                    disable logging
  -j, --json                          enable json logging
  -h, --help                          output usage information
$ niconizer-slack -t SLACK_API_TOKEN_HERE -a SLACK_APP_TOKEN_HERE

Both token (-t) and app-token (-a) are required. Other options are optional.

If no channel was specified, all messages in the authorization scope of the token in the workspace are send to the niconizer.

Press Ctrl+C to exit.