https://github.com/misavojte/gazeplotter
GazePlotter is a Svelte application for visualizing eye-tracking data. It automatically transforms eye gaze data to interactive scarf plots.
https://github.com/misavojte/gazeplotter
eye-tracking eyetracking scarf-plot sequence-chart typescript
Last synced: 3 months ago
JSON representation
GazePlotter is a Svelte application for visualizing eye-tracking data. It automatically transforms eye gaze data to interactive scarf plots.
- Host: GitHub
- URL: https://github.com/misavojte/gazeplotter
- Owner: misavojte
- License: gpl-3.0
- Created: 2022-11-17T10:09:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-21T14:08:18.000Z (3 months ago)
- Last Synced: 2025-07-21T14:45:21.045Z (3 months ago)
- Topics: eye-tracking, eyetracking, scarf-plot, sequence-chart, typescript
- Language: Svelte
- Homepage: https://gazeplotter.com/
- Size: 2.91 MB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GazePlotter
GazePlotter is a Svelte application for visualizing eye-tracking data. It automatically transforms eye gaze data to interactive scarf plots.
You can use it in your Svelte project as it can be imported as Svelte component via npm package `gazeplotter`.
Go to:
- [Working GazePlotter app](https://gazeplotter.com)
- [Guide](https://docs.gazeplotter.com)
- [Guide repo](https://github.com/misavojte/GazePlotterDocs)
- [npm package](https://www.npmjs.com/package/gazeplotter)## Developing
Once you've cloned a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```Everything inside `src/lib` is part of the GazePlotter library, everything inside `src/routes` is used as a showcase or preview app.
## Building
To build GazePlotter library:
```bash
npm run package
```To create a production version of your showcase app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> For deploy on GH Pages, there is a static [adapter](https://kit.svelte.dev/docs/adapters).
## Publishing
To publish library to [npm](https://www.npmjs.com):
```bash
npm publish
```