A Wappler Server Connect extension for interacting with Redis databases directly from the Wappler visual development environment. Current stable version is 1.0.0. The toolkit provides over a dozen server actions for common Redis operations including JSON storage, counters, key management, collections (sets and lists), and custom Redis commands. It requires the ioredis library (peer dependency) and a functioning Redis connection. Differentiating from generic Redis clients, it integrates directly into Wappler's server workflow UI with no coding required.
npm install wappler-redis-toolkitNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates using the Redis Toolkit to connect to Redis and insert JSON data, typical of how server actions are structured in Wappler.
Run 'npm install ioredis' or ensure Wappler auto-installs it on deployment.
Set environment variables in your deployment environment or Wappler server config.
Set REDIS_TLS to '{}' in your environment variables for TLS without a custom cert.Use the 'Run Redis Command' action with SCAN for key retrieval on production systems.
Ensure data is a valid JSON object or string; use JSON.stringify() in custom scripts if necessary.
Run 'npm install ioredis' in your project root or trigger deployment in Wappler to auto-install.
Ensure Redis is running and accessible with the configured host/port. Check firewall and environment variables.
Verify that ioredis is installed and the Redis constructor is called correctly (e.g., new Redis()).