├── .gitignore ├── LICENSE ├── README.md ├── docs └── example_browser.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── script.js └── style.css └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/README.md -------------------------------------------------------------------------------- /docs/example_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/docs/example_browser.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/public/index.html -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/public/script.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/public/style.css -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshymanskyy/serial-server/HEAD/server.js --------------------------------------------------------------------------------