Socket
Socket
Sign inDemoInstall

vwo-node-sdk-redis-helper

Package Overview
Dependencies
10
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vwo-node-sdk-redis-helper

VWO Node SDK Redis Helper to use Redis as a UserStorage Service in VWO Node SDK


Version published
Weekly downloads
2
Maintainers
1
Install size
974 kB
Created
Weekly downloads
 

Changelog

Source

[1.0.0] - 2024-02-15

Added

  • Redis helper to connect VWO Node SDK with running Redis instance to store and retrieve VWO campaigns data

Readme

Source

VWO Node SDK Redis Helper

npm version

License

This open source library allows you to use Redis as a UserStorage Service in VWO Node SDK

Requirements

  • Node 6.10.0 or later - for server-side
  • Redis 4.6 or later

Installation

# via npm
npm install vwo-node-sdk-redis-helper --save

# via yarn
yarn add vwo-node-sdk-redis-helper

How to use

  1. Require the helper

    const VWOUserStorageRedisHelper = require('vwo-node-sdk-redis-helper');
    
  2. Create the instance

    const VWORedisStorageInstance = new VWOUserStorageRedisHelper();
    
  3. Initialize the helper with the Redis configuration

    VWORedisStorageInstance.init({
      // URL to connect with Redis
      url: 'http://localhost',
      // password to connect to Redis, if any
      password: "test@123",
      // (Optional) port where redis is listening, by default 6379
      port: 1234
    });
    

Documentation

Refer Official VWO Documentation

Authors

Changelog

Refer CHANGELOG.md

Contributing

Please go through our contributing guidelines

Code of Conduct

Code of Conduct

License

Apache License, Version 2.0

Copyright 2024 Wingify Software Pvt. Ltd.

FAQs

Last updated on 15 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc