├── .gitignore ├── README.md ├── api └── getVideoSource.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── player.css ├── player.js ├── style.css └── watch.html └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vercel 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/README.md -------------------------------------------------------------------------------- /api/getVideoSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/api/getVideoSource.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/index.html -------------------------------------------------------------------------------- /public/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/player.css -------------------------------------------------------------------------------- /public/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/player.js -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/style.css -------------------------------------------------------------------------------- /public/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/public/watch.html -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooglyBlox/free-numerade-videos/HEAD/vercel.json --------------------------------------------------------------------------------