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

@rawdash/connector-monday

v0.29.2

Published

Rawdash connector for monday.com — boards, items, and item activity events

Readme

@rawdash/connector-monday

npm version license

Sync boards, items, and item activity events from a monday.com account.

Install

npm install @rawdash/connector-monday

Authentication

A monday.com API token is required. It authenticates every GraphQL request and scopes the sync to the boards the token can access.

  1. Open monday.com and click your avatar -> Developers.
  2. Go to My access tokens and copy your personal API token.
  3. Store it as a secret and reference it from the connector config as apiToken: secret("MONDAY_API_TOKEN").

Configuration

| Field | Type | Required | Description | | ----------- | ------ | -------- | ----------------------------------------------------------------------------------------------------------- | | apiToken | secret | Yes | monday.com API token. Create one at monday.com -> Profile (avatar) -> Developers -> My access tokens. | | boardIds | array | No | Restrict the sync to specific board IDs. Omit to discover and sync every board the token can see. | | resources | array | No | Which resources to sync. Omit to sync all resources. The item_events phase reads each board activity log. |

Resources

  • monday_board (entity) - Boards with their name, state, kind, workspace, and item count.
    • Endpoint: GraphQL query: boards { ... }
  • monday_item (entity) - Board items with their name, state, group, board, column values, and lifecycle timestamps.
    • Endpoint: GraphQL query: boards { items_page { items { ... } } }
  • monday_item_activity (event) - Item activity events derived from each board activity log (creates, updates, status changes), keyed by the originating user.
    • Endpoint: GraphQL query: boards { activity_logs { ... } }
    • Derived from each board activity log. Activity logs are filtered server-side by date in incremental mode (the from argument) and these append-only events accumulate across syncs. A full sync clears and rewrites the event stream.

Example

import {
  defineConfig,
  defineDashboard,
  defineMetric,
  secret,
} from '@rawdash/core';

const monday = {
  name: 'monday',
  connectorId: 'monday',
  config: {
    apiToken: secret('MONDAY_API_TOKEN'),
  },
};

export default defineConfig({
  connectors: [monday],
  dashboards: {
    delivery: defineDashboard({
      widgets: {
        active_items: {
          kind: 'stat',
          title: 'Active items',
          metric: defineMetric({
            connector: monday,
            shape: 'entity',
            entityType: 'monday_item',
            fn: 'count',
            filter: [{ field: 'state', op: 'eq', value: 'active' }],
          }),
        },
      },
    }),
  },
});

Rate limits

monday.com meters requests by a per-minute complexity budget rather than a fixed request count; the connector walks one board at a time and pages items at most 100 at a time to keep each query within budget.

Limitations

  • API token auth only (OAuth not yet supported).
  • items_page has no server-side updated-at filter, so incremental item syncs page each board and drop unchanged rows client-side; item activity events are filtered server-side by date.
  • Webhooks, updates/replies, and sub-items are out of scope.

Links

License

Apache-2.0