knexer / auto-puzzler

A simple game about writing code to assist in solving puzzles, built to learn React.
0 stars 0 forks source link

Gameplay analytics type stuff?? #25

Open knexer opened 1 year ago

knexer commented 1 year ago

It would be awesome to see:

But there's a definite pandora's box here - data collection ethics, infrastructure (I would need an endpoint for it to hit with metrics I assume?), adding dependencies, etc. Probably not worth doing yet.

knexer commented 1 year ago

Looks like google analytics with custom events might just be fine. Otherwise https://plausible.io/ is not free, but is probably cheap enough, and is lighter and less ethically gross

knexer commented 1 year ago

Alternative here - just set up a dynamodb or similar, keyed by a player id (generated when their save data is created). Each record could have a sequential list of events, a last updated time, that kind of thing.

knexer commented 1 year ago

Okay, definitely want some version of this before posting the game somewhere, if only to get a sense of player count and stuff.

Leaning towards plausible.io currently