├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── Meta.ts ├── PeerFileReceive.ts ├── PeerFileSend.ts └── index.ts ├── test ├── basic.js ├── cat.jpg └── cat2.jpg ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.jpg 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/package.json -------------------------------------------------------------------------------- /src/Meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/src/Meta.ts -------------------------------------------------------------------------------- /src/PeerFileReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/src/PeerFileReceive.ts -------------------------------------------------------------------------------- /src/PeerFileSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/src/PeerFileSend.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/test/cat.jpg -------------------------------------------------------------------------------- /test/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/test/cat2.jpg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/simple-peer-files/HEAD/yarn.lock --------------------------------------------------------------------------------