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

@mish.dev/strapi-table

v1.2.1

Published

The strapi-table plugin enhances your Strapi administration panel by providing advanced table functionalities.

Downloads

2,164

Readme

Strapi Table Plugin

Overview

The strapi-table plugin enhances your Strapi administration panel by providing advanced table functionalities, potentially including rich text editing capabilities for table cells. This plugin aims to offer a more robust and flexible way to manage tabular data within your Strapi content types.

Features

  • Enhanced Table Management: Provides a more powerful interface for creating and managing tables.
  • Rich Text Editing: Integrates react-quill-new for rich text editing within table cells, allowing for formatted content.
  • Content Sanitization: Utilizes sanitize-html to ensure that rich text content is safe and free from malicious scripts.
  • State Management: Leverages zustand for efficient and scalable state management within the plugin's UI.

Installation

To install the strapi-table plugin, follow these steps:

  1. Install the package:

    npm install strapi-table
    # or
    yarn add strapi-table
  2. Enable the plugin: Add the following to ./config/plugins.ts (create the file if it doesn't exist):

    {
      table: {
        enabled: true,
        resolve: '@mish.dev/strapi-table',
      },
    };
  3. Build your Strapi admin panel:

    npm run build
    # or
    yarn build
  4. Start your Strapi application:

    npm run develop
    # or
    yarn develop
  5. Usage in field Strapi

    "data": {
      "type": "customField",
      "customField": "plugin::strapi-table.StrapiTable",
      "required": true
    }

Usage

Once installed and enabled, the Strapi Table plugin should appear in your Strapi admin panel. You can then integrate its functionalities into your content types.

alt text alt text alt text

How to Use the Table

  • Row Selection: Clicking on a cell with a number will select the entire row.

Hotkeys

  • Backspace: Clears all content within the selected row.
  • Delete: Deletes the entire selected row.

Inserting Content

  • Insert from External Sources: Click on the intersection of the header and rows (top-left corner) to select the entire table. This allows you to paste data from external sources, such as Google Sheets.
  • Image Insertion: If the rich text editor within table cells supports it, you can insert images directly into the cells.

Contributing

We welcome contributions to the strapi-table plugin! If you have suggestions, bug reports, or want to contribute code, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Hwaiteu [email protected]