├── .gitignore ├── README.md ├── compile-templates.js ├── demo.gif ├── index.html ├── index.js ├── package.json ├── templates.json ├── templates ├── console_out.js ├── csv_parse.js ├── ndjson_parse.js ├── ndjson_serialize.js ├── request.js ├── table_out.js ├── through.js └── ticker.js ├── windows.css └── windows.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/README.md -------------------------------------------------------------------------------- /compile-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/compile-templates.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/package.json -------------------------------------------------------------------------------- /templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates.json -------------------------------------------------------------------------------- /templates/console_out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/console_out.js -------------------------------------------------------------------------------- /templates/csv_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/csv_parse.js -------------------------------------------------------------------------------- /templates/ndjson_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/ndjson_parse.js -------------------------------------------------------------------------------- /templates/ndjson_serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/ndjson_serialize.js -------------------------------------------------------------------------------- /templates/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/request.js -------------------------------------------------------------------------------- /templates/table_out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/table_out.js -------------------------------------------------------------------------------- /templates/through.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/through.js -------------------------------------------------------------------------------- /templates/ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/templates/ticker.js -------------------------------------------------------------------------------- /windows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/windows.css -------------------------------------------------------------------------------- /windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/streams-editor/HEAD/windows.js --------------------------------------------------------------------------------