The official SDK for building plugins for RedisInsight v2 application. Version 1.1.0 provides a high-level API for communication between plugins and the RedisInsight host, including executing read-only Redis commands, managing state, and formatting Redis replies. Designed exclusively for the RedisInsight plugin ecosystem; not a general-purpose Redis client library. Currently stable with no active development observed since 2021.
npm install redisinsight-plugin-sdkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates all five SDK methods: execute a Redis command, set header text, save and retrieve state, and format a reply.
Do not attempt to execute write commands like SET, DEL, etc.
Wrap getState() in try/catch or check with hasState() (if available).
Check RedisInsight plugin API documentation for v3 compatibility; may require migration.
Use named import: import { executeRedisCommand } from 'redisinsight-plugin-sdk'Call setState() first with any value, or check state existence before calling getState().
Run npm install redisinsight-plugin-sdk in your plugin project. This package only works inside the RedisInsight sandbox.
No dependency data recorded yet.