Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jkanche/uepiviz

micro(u) epiviz
https://github.com/jkanche/uepiviz

Last synced: 23 days ago
JSON representation

micro(u) epiviz

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:8899

or

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/`