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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@parseable/backstage-plugin-datasets

v1.2.1

Published

Backstage plugin for viewing and searching Parseable datasets and logs with support for both legacy and new frontend systems

Readme

@parseable/backstage-plugin-datasets

A Backstage plugin for viewing and searching Parseable datasets and logs.

🎉 New Frontend System Support

This plugin now supports both the legacy Backstage system and the new frontend system! See MIGRATION.md for details.

Features

  • View all available Parseable datasets
  • Search and filter logs within datasets
  • Dynamic column generation based on log structure
  • Pagination and sorting support
  • Expandable view for long log entries
  • Real-time log fetching
  • Dual system support - works with both legacy and new Backstage frontend systems

Installation

Add the plugin to your Backstage app:

yarn add @parseable/backstage-plugin-datasets

Setup

Legacy System (Current)

1. Add the plugin to your app

In your packages/app/src/App.tsx:

import { ParseableDatasetsPage } from '@parseable/backstage-plugin-datasets';

// Add to your routes
<Route path="/parseable-datasets" element={<ParseableDatasetsPage />} />

New Frontend System (Optional)

If your app uses the new frontend system:

// In your app's features array
import parseablePlugin from '@parseable/backstage-plugin-datasets';

const app = createApp({
  features: [
    parseablePlugin,
    // ... other plugins
  ],
});

The plugin will automatically register its route at /parseable-datasets.

Note: See MIGRATION.md for complete migration instructions.

2. Add navigation

In your packages/app/src/components/Root/Root.tsx:

import StorageIcon from '@material-ui/icons/Storage';

// Add to your sidebar
<SidebarItem icon={StorageIcon} to="parseable-datasets" text="Parseable Datasets" />

3. Configure the API

The plugin connects to Parseable at https://demo.parseable.com by default. To configure a different endpoint, you can modify the base URL in the component or extend the API client.

Usage

  1. Navigate to "Parseable Datasets" in your Backstage sidebar
  2. Select a dataset from the dropdown
  3. View and search through the logs
  4. Click "See more" on truncated entries to view full content
  5. Use the table's built-in search, sort, and pagination features

Development

# Install dependencies
yarn install

# Run in development
yarn start

# Build the plugin
yarn build

# Run tests
yarn test

API

The plugin provides the following API:

  • parseableApiRef - Reference to the Parseable API client
  • ParseableClient - API client implementation
    • getUserInfo(baseUrl) - Fetch user info and available datasets
    • getLogs(baseUrl, dataset, limit) - Fetch logs from a specific dataset

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the Apache-2.0 License.