├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── lib ├── constants.js ├── handle-multiple-arg.js ├── handle-single-arg.js ├── index.js ├── qrcode.js ├── server.js └── tunnel.js ├── package.json └── test └── lib └── constants-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/README.md -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/handle-multiple-arg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/handle-multiple-arg.js -------------------------------------------------------------------------------- /lib/handle-single-arg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/handle-single-arg.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/qrcode.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/lib/tunnel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/package.json -------------------------------------------------------------------------------- /test/lib/constants-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenkatreddy/qr-filetransfer/HEAD/test/lib/constants-test.js --------------------------------------------------------------------------------