New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@rezonence/sdk

Package Overview
Dependencies
Maintainers
1
Versions
568
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rezonence/sdk

An SDK for interacting with Rezonence FreeWalls

latest
Source
npmnpm
Version
4.276.0
Version published
Maintainers
1
Created
Source

Rezonence SDK

This project contains a set of utilities for interacting with Rezonence FreeWalls

Getting started

Make sure you have NodeJS installed on your system

Using the SDK

  • Run npm install --save @rezonence/sdk within your project

  • If you use a modern web packaging system:

import r3z from '@rezonence/sdk'

Or:

var r3z = require('@rezonence/sdk')

  • Listening to the answer clicked

var microsite = new r3z.Microsite();

microsite.listenForAnswerClick(function(event) {
    
     var answerText = event.dat.answerText;
     console.log("Answer clicked =", answerText);
    
});


Running the example

  • Clone the repository using the command git clone https://bitbucket.org/rezonence/r3z-sdk.git
  • Go into the folder: cd r3z-sdk
  • Run the command: npm install
  • Compile using: yarn run compile
  • Open the file 'example-article-with-freewall.html' in a browser

FAQs

Package last updated on 20 Feb 2023

Did you know?

Socket

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