spy-web-client
client-side library for recording events to spy-server
Installation
npm install --save spy-web-client
Usage
- livescript:
{record} = (require! \spy-web-client) do # properties included in every recorded event common-event-parameters: -> user-id: window.user-id # url where the spy-server is hosted url: \http://localhost:3010/yourProjectName window.add-event-listener \load, -> record do event-type: \page-ready
- javascript:
var spy = // properties included in every recorded event { return userId: windowuserId ; } // url where the spy-server is hosted url: "http://localhost:3010/yourProjectName" ; window;