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

slackmetascraper

v3.3.0

Published

Scrapes a Slack channel and returns an array of userMetadata objects. Metadata objects contain all quantitative data available from a channel. See the readme for sample outputs

Downloads

56

Readme

Slack Channel Metadata Scraper

Latest change: v3.3.0:
  • added a channel_metadata object which stores the aggregate of all user_metadata in that scrape
  • see new shape of data below for breaking change
  • improved internal language and comments for better readability

This is a tool that captures Slack channel metadata of all users / bot users in a selected timeframe

If you would like to help improve this package visit the Github repo

No qualitative message data is read or captured - only quantitative metadata identifiable by the user's Slack user ID

Usage

Parameters

Required

  • <channelID>: Slack channel ID to query for message history

  • <oAuthToken>: Slack oAuth token issued to your app / bot for the Slack team

    • you must also allow the permissions scope "channels.history"

Optional

  • [start]: beginning timestamp to query message history

    • use most recent metaData.timestamp for this parameter during daily queries (more detail below)
  • [end]: ending timestamp to query message history - default to current time

  • [count]: number of messages to return in the query

    • default / maximum: 1000 messages

Note: if no start / end are passed then the entire message history (up to 1000 messages) will be scanned for metadata

How to use

  • All you need to supply is an oAuthToken (with the channels.history permission scope set in Slack under oAuth&permissions -> Scopes) from Slack and a valid Slack channel ID of the channel you want to scrape.
  • Returns a promise

Sample Usage

const scraper = require('slackmetascraper');

scraper('SLACK_CHANNEL_ID', 'SLACK_TEAM_OAUTH_TOKEN')
.then(output => console.log(output))
.catch(error => console.error(error));

Sample Outputs

metaData object returned

Note: the timestamp property is the Slack ts (timestamp) value of the most recent message in the current query

  • all timestamps are non-inclusive meaning if you pass a starting timestamp you will get metadata for all messages after the message that corresponds to that timestamp

This timestamp can be used for daily scans as a starting time for the next query (to prevent overlap of data)

{ timestamp: '1516440825.000067',
  users_metadata: [ 
     { user_id: 'U81UE6STB',
       pinned_item: 1,
       messages: 8,
       me_message: 1,
       file_metadata: [Array],
       file_share: 2,
       file_comment: 1,
       reactions: 1,
       thread_comments: 1,
       threads: 1 },
     { user_id: 'U83GHURRD', messages: 1 },
     { user_id: 'U81UE2589', messages: 1 } 
  ],

  channel_metadata:
   { channel_id: 'C88FDG3EV',
     pinned_item: 1,
     messages: 10,
     me_message: 1,
     file_metadata: [ [Object], [Object] ],
     file_share: 2,
     file_comment: 1,
     reactions: 1,
     thread_comments: 1,
     threads: 1 } }

metadata file_metadata array

  • any code that is shared (as a Slack code snippet) will have its line of code stored as lines and language stored as type
[ { type: 'jpg', is_starred: true, num_stars: 1 },
  { type: 'javascript', lines: 1, comments_count: 1 } ]