New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@liveqa/browser

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liveqa/browser

LiveQA Browser Integration

  • 1.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

LiveQA Browser

LiveQA browser javascript integration for LiveQA

Installation

You can find the snippet under your space and environment settings

Track

Track on click

<a href='#' data-liveqa='true' data-liveqa-name='my event' /> 
Send an event

Track an event

Attributes:

  • String event name
  • Object event attributes
LiveQA.track('my event',
  {
    user_id: 42,
    properties: {
        order_id: 84 
    }
  }
);

Identify

Identify a user

Attributes:

  • String user id from your database
  • Object user attributes
LiveQA.identify(42,
  {
    properties: {
      name: 'John Doe' 
    }
  }
);

Watch

Create a watcher

Attributes:

  • String|Integer template flow name or id
  • Object watcher attributes
LiveQA.watch('My Flow',
  {
    expected_times: 42
  }
);

Issues

If you have any issue you can report them on github, or contact support@liveqa.io

Keywords

FAQs

Package last updated on 21 Aug 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc