├── .gitignore ├── README.md ├── demo.png ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nneonneo/iOS-Torrent-Client/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nneonneo/iOS-Torrent-Client/HEAD/demo.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nneonneo/iOS-Torrent-Client/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nneonneo/iOS-Torrent-Client/HEAD/package.json --------------------------------------------------------------------------------