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

slack-vscode

v0.0.8

Published

Slack extension for VS Code: Send your messages and files to Slack without leaving the editor.

Readme

VS Code Slack extension

Send your messages and files to Slack without leaving VS Code.

How it works?

  • Upload file to Slack

Send message

  • Send message to Slack

Upload file

Installation

You can install this extension by pressing F1 in Visual Studio Code, then typing "ex install" and selecting it from the list.

Configuration

Go to User Settings (File > Preferences > User Settings) and add the following

  "slackVSCode.token": "<your team token>",
  "slackVSCode.user": "<your username>",
  "slackVSCode.iconUrl": "<your avatar url>",
  "slackVSCode.listChannels": true,
  "slackVSCode.listGroups": false,
  "slackVSCode.listMembers": false,
  "slackVSCode.fileWithFullPath": true,
  "slackVSCode.excludeFromFullPath": "/Users/alper/dev",
  "slackVSCode.defaultRecipient": "#general",
  "slackVSCode.postAsUser" : true|false
  • "token" (required)
    • You can get the token from https://api.slack.com/docs/oauth-test-tokens
  • "user" (optional)
    • defaults to "Code"
    • Specified username will be attributed to each message
  • "iconUrl" (optional)
    • Image for the avatar, default 'http://alperg.com/vscode-128x128.png'
  • "listChannels" (optional)
    • true for listing the slack channels
  • "listGroups" (optional)
    • true for listing the slack groups
  • "listMembers" (optional)
    • true for listing the slack members
  • "fileWithFullPath" (optional)
    • true if you want to send files with full path
  • "excludeFromFullPath" (optional)
    • String to exclude from the file full path i.e. /Users/alper/dev
  • "defaultRecipient" (optional)
    • The default recipient, to send the message directly without choosing from the drop down. i.e. #general, @user
  • "postAsUser" (optional)
    • defaults to false
    • Set to true to post messages as the authorized user instead of as a bot

Features

  • Send messages to
    • users
    • channels
    • private groups
  • Can send message:
    • from selected code
    • from user input
  • @user, #channel supported (at the beginning of message)
  • Autofill last used channel/user/group
  • Upload files
    • current open file
    • enter file path manually
    • selected text in open file
  • Specify default recipient
  • Limit channels/groups/members

Shortcuts

  • CTRL + ALT + SHIFT + M : Send new message
  • CTRL + ALT + SHIFT + S : Send selection
  • CTRL + ALT + SHIFT + U : Upload current file

Feedback / Bug report / feature request

https://github.com/alperg/slack-vscode/issues

Credits

This extension is not created by, affiliated with, or supported by Slack Technologies, Inc.