Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thlorenz/stream-viz
Visualizes streams in the browser.
https://github.com/thlorenz/stream-viz
Last synced: about 1 month ago
JSON representation
Visualizes streams in the browser.
- Host: GitHub
- URL: https://github.com/thlorenz/stream-viz
- Owner: thlorenz
- License: mit
- Created: 2013-09-26T13:12:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-12T03:25:57.000Z (about 11 years ago)
- Last Synced: 2024-10-30T06:32:55.789Z (about 2 months ago)
- Language: JavaScript
- Homepage: http://thlorenz.github.io/stream-viz/
- Size: 863 KB
- Stars: 37
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stream-viz
[![testling badge](https://ci.testling.com/thlorenz/stream-viz.png)](https://ci.testling.com/thlorenz/stream-viz)
Visualizes a stream in the browser.
[Play with it live](http://thlorenz.github.io/stream-viz/).
```js
var sviz = require('stream-viz')
var readable = getSomeReadable()
, writable = getSomeWritable()sviz(readable);
sviz(writable);readable.pipe(writable);
```## Running the Examples
After you installed `stream-viz` please do the following:
`npm explore stream-viz && npm install`
### Run the Full Example
`npm start`
### Run smaller examples
`npm run line-chart|gauge|tabject|ticker`
More coming.
### Note
When creating your own visualization, you need to include specific `css` properly render the visualized streams. More
documentation on how to set up a stream visualization properly is coming.For now please consult [this three stream visualization
example](https://github.com/thlorenz/stream-viz/tree/master/example/overview) or consult any of the simpler examples
found [here](https://github.com/thlorenz/stream-viz/tree/master/example/)## Installation
npm install stream-viz
## API
## License
MIT