🐾 A web-based tool for logging, visualizing and analyzing mouse events like movement and clicks.
ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ
Yang Luo 17edfda3cf Support negative integer, sometimes name type cannot be retrieved. 2020-09-04 15:34:45 +08:00
batch Rename package trace to object. 2020-08-31 19:51:06 +08:00
conf Add website config page. 2020-01-15 15:40:58 +08:00
controllers Add captor pages. 2020-09-01 01:04:29 +08:00
crawler Add the screenshot crawler. 2020-02-15 17:00:10 +08:00
detect Rename package trace to object. 2020-08-31 19:51:06 +08:00
fileutils Rename package trace to object. 2020-08-31 19:51:06 +08:00
object Add captor pages. 2020-09-01 01:04:29 +08:00
parse Support negative integer, sometimes name type cannot be retrieved. 2020-09-04 15:34:45 +08:00
routers Add captor pages. 2020-09-01 01:04:29 +08:00
screenshot Improve code format. 2020-03-04 13:17:22 +08:00
util Add RuleTimeConflict. 2020-08-17 17:38:48 +08:00
web Add captor pages. 2020-09-01 01:04:29 +08:00
.gitignore Add go modules. 2020-03-09 23:21:01 +08:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2019-12-10 04:16:12 -08:00
CONTRIBUTING.md Improve the docs for publishing. 2019-12-10 20:44:26 +08:00
LICENSE Initial LICENSE commit 2019-12-10 04:16:14 -08:00
README.md Update README to remove mouselog.js repo info. 2020-06-30 23:56:40 +08:00
SECURITY.md Initial SECURITY.md commit 2019-12-10 04:16:15 -08:00
go.mod Add go modules. 2020-03-09 23:21:01 +08:00
go.sum Add go modules. 2020-03-09 23:21:01 +08:00
main.go Rename package trace to object. 2020-08-31 19:51:06 +08:00

README.md

Mouselog 🐾

NPM version npm download

Mouselog is a web-based platform for website owners to log, visualize and analyze user behaviors like mouse trace data.

Live Demo

https://mouselog.org/

Architecture

Mouselog contains 3 parts:

Name Description Language Source code Release
Client-side Agent Mouselog client-side agent that runs on end-user's browser to send mouse trace data to Mouselog server-side Javascript N/A (Closed-source) https://npmjs.com/package/mouselog
Server-frontend Web frontend UI for Mouselog server-side Javascript + React + Ant Design https://github.com/microsoft/mouselog/tree/master/web N/A
Server-backend RESTful API backend for Mouselog server-side Golang + Beego + MySQL https://github.com/microsoft/mouselog N/A

Installation

Client-side Agent

mouselog

The client-side agent is not open-source anymore. The latest release on NPM is v0.5.0.

Server-side

  • Get the code:
go get github.com/microsoft/mouselog
  • Prepare a Xorm ORM supported database (MySQL is recommended), replace root:123@tcp(localhost:3306)/ in conf/app.conf with your own connection string. Mouselog will create a database named mouselog and necessary tables in it if not exist. All Xorm supported databases are listed here.

  • Run Server-backend (in port 9000):

go run main.go
  • Run Server-frontend (in the same machine's port 4000):
cd web
npm install
npm start
  • Open browser:

http://localhost:4000/

License

This project is licensed under the MIT license.

If you have any issues or feature requests, please contact us. PR is welcomed.