├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── components └── WebFlight.js ├── examples └── app-logos │ ├── README.md │ ├── app │ ├── App.jsx │ ├── components │ │ ├── Button.jsx │ │ └── Logo.jsx │ └── utils │ │ └── wf.js │ ├── package.json │ ├── public │ ├── bundle.js │ ├── imgs │ │ ├── apple.png │ │ ├── google.png │ │ ├── netflix.png │ │ └── spacex.png │ └── index.html │ ├── webflight │ └── WebFlight.jsx │ └── webpack.config.js ├── index.js ├── lib ├── botGenerator.js ├── botGeneratorDev.js ├── createFilesArr.js ├── getMagnetURI.js ├── injectScript.js ├── prioritizeFiles.js ├── stringifyHtml.js ├── writeNewHtml.js └── writeSeedScript.js ├── package.json └── test ├── fixtures ├── assets │ ├── images │ │ ├── eagle.jpg │ │ ├── falcon.jpg │ │ └── owl.jpg │ ├── imagesCopy │ │ └── owl.jpg │ └── videos │ │ └── birds.gif ├── filesArray.js ├── filesObj.js ├── hashObj.js ├── html │ ├── index.html │ └── logos.html ├── htmlFiles.js ├── htmlString.js ├── imgs │ ├── apple.png │ ├── google.png │ └── netflix.png ├── magnetURI.js ├── newHtml.js ├── opts.js ├── seedObj.js ├── sortedFilesArray.js └── wfPath │ ├── js │ └── wf-seed.js │ └── wf-index.html ├── integration ├── app │ └── index.html └── init.js └── unit ├── createFilesArr.js ├── getMagnetURI.js ├── injectScript.js ├── prioritizeFiles.js ├── stringifyHtml.js ├── writeNewHtml.js └── writeSeedScript.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | progress 3 | examples 4 | .npmignore 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | progress 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/README.md -------------------------------------------------------------------------------- /components/WebFlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/components/WebFlight.js -------------------------------------------------------------------------------- /examples/app-logos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/README.md -------------------------------------------------------------------------------- /examples/app-logos/app/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/app/App.jsx -------------------------------------------------------------------------------- /examples/app-logos/app/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/app/components/Button.jsx -------------------------------------------------------------------------------- /examples/app-logos/app/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/app/components/Logo.jsx -------------------------------------------------------------------------------- /examples/app-logos/app/utils/wf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/app/utils/wf.js -------------------------------------------------------------------------------- /examples/app-logos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/package.json -------------------------------------------------------------------------------- /examples/app-logos/public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/bundle.js -------------------------------------------------------------------------------- /examples/app-logos/public/imgs/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/imgs/apple.png -------------------------------------------------------------------------------- /examples/app-logos/public/imgs/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/imgs/google.png -------------------------------------------------------------------------------- /examples/app-logos/public/imgs/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/imgs/netflix.png -------------------------------------------------------------------------------- /examples/app-logos/public/imgs/spacex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/imgs/spacex.png -------------------------------------------------------------------------------- /examples/app-logos/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/public/index.html -------------------------------------------------------------------------------- /examples/app-logos/webflight/WebFlight.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/webflight/WebFlight.jsx -------------------------------------------------------------------------------- /examples/app-logos/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/examples/app-logos/webpack.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/index.js -------------------------------------------------------------------------------- /lib/botGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/botGenerator.js -------------------------------------------------------------------------------- /lib/botGeneratorDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/botGeneratorDev.js -------------------------------------------------------------------------------- /lib/createFilesArr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/createFilesArr.js -------------------------------------------------------------------------------- /lib/getMagnetURI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/getMagnetURI.js -------------------------------------------------------------------------------- /lib/injectScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/injectScript.js -------------------------------------------------------------------------------- /lib/prioritizeFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/prioritizeFiles.js -------------------------------------------------------------------------------- /lib/stringifyHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/stringifyHtml.js -------------------------------------------------------------------------------- /lib/writeNewHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/writeNewHtml.js -------------------------------------------------------------------------------- /lib/writeSeedScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/lib/writeSeedScript.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/assets/images/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/assets/images/eagle.jpg -------------------------------------------------------------------------------- /test/fixtures/assets/images/falcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/assets/images/falcon.jpg -------------------------------------------------------------------------------- /test/fixtures/assets/images/owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/assets/images/owl.jpg -------------------------------------------------------------------------------- /test/fixtures/assets/imagesCopy/owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/assets/imagesCopy/owl.jpg -------------------------------------------------------------------------------- /test/fixtures/assets/videos/birds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/assets/videos/birds.gif -------------------------------------------------------------------------------- /test/fixtures/filesArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/filesArray.js -------------------------------------------------------------------------------- /test/fixtures/filesObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/filesObj.js -------------------------------------------------------------------------------- /test/fixtures/hashObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/hashObj.js -------------------------------------------------------------------------------- /test/fixtures/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/html/index.html -------------------------------------------------------------------------------- /test/fixtures/html/logos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/html/logos.html -------------------------------------------------------------------------------- /test/fixtures/htmlFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/htmlFiles.js -------------------------------------------------------------------------------- /test/fixtures/htmlString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/htmlString.js -------------------------------------------------------------------------------- /test/fixtures/imgs/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/imgs/apple.png -------------------------------------------------------------------------------- /test/fixtures/imgs/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/imgs/google.png -------------------------------------------------------------------------------- /test/fixtures/imgs/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/imgs/netflix.png -------------------------------------------------------------------------------- /test/fixtures/magnetURI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/magnetURI.js -------------------------------------------------------------------------------- /test/fixtures/newHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/newHtml.js -------------------------------------------------------------------------------- /test/fixtures/opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/opts.js -------------------------------------------------------------------------------- /test/fixtures/seedObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/seedObj.js -------------------------------------------------------------------------------- /test/fixtures/sortedFilesArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/sortedFilesArray.js -------------------------------------------------------------------------------- /test/fixtures/wfPath/js/wf-seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/wfPath/js/wf-seed.js -------------------------------------------------------------------------------- /test/fixtures/wfPath/wf-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/fixtures/wfPath/wf-index.html -------------------------------------------------------------------------------- /test/integration/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/integration/app/index.html -------------------------------------------------------------------------------- /test/integration/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/integration/init.js -------------------------------------------------------------------------------- /test/unit/createFilesArr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/createFilesArr.js -------------------------------------------------------------------------------- /test/unit/getMagnetURI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/getMagnetURI.js -------------------------------------------------------------------------------- /test/unit/injectScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/injectScript.js -------------------------------------------------------------------------------- /test/unit/prioritizeFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/prioritizeFiles.js -------------------------------------------------------------------------------- /test/unit/stringifyHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/stringifyHtml.js -------------------------------------------------------------------------------- /test/unit/writeNewHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/writeNewHtml.js -------------------------------------------------------------------------------- /test/unit/writeSeedScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-WebFlight/webflight-react/HEAD/test/unit/writeSeedScript.js --------------------------------------------------------------------------------