Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkanche/uepiviz
micro(u) epiviz
https://github.com/jkanche/uepiviz
Last synced: 23 days ago
JSON representation
micro(u) epiviz
- Host: GitHub
- URL: https://github.com/jkanche/uepiviz
- Owner: jkanche
- Created: 2020-11-15T19:25:51.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T02:11:44.000Z (about 4 years ago)
- Last Synced: 2024-10-30T19:12:30.446Z (2 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# µEpiviz
The goal of this is to explore alternative approaches (as compared to d3) to render large datasets very quickly.
The library uses
- Web Workers - to render data in a background thread
- OffScreenCanvas - the only dom element that can be accessed from a web worker.Using the best of these two, once can imagine speeding up visualization or rendering by switching this process to web workers.
## Install
Nothing to install much (yet), everything is written to work straight off the box.
## Run
a simple web server either through python or php should suffice
```
php -S localhot:8899or
python -m http.server 8899
```and then navigate to the page with the port you use
the index.html file is inside the docs folder, so the url to access would be `http://localhost:8899/docs/`