├── README.md ├── app.js ├── bin └── www ├── config └── googleyoutube.json ├── constant └── utility.js ├── library └── googleyoutube.js ├── ngnix └── youtube ├── package.json ├── public └── stylesheets │ ├── style.css │ └── style.styl ├── routes └── index.js ├── screenshot ├── 3.png ├── 4.png └── 5.png ├── scripts └── youtube.js └── views ├── error.ejs ├── index.ejs └── welcome.ejs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/bin/www -------------------------------------------------------------------------------- /config/googleyoutube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/config/googleyoutube.json -------------------------------------------------------------------------------- /constant/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/constant/utility.js -------------------------------------------------------------------------------- /library/googleyoutube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/library/googleyoutube.js -------------------------------------------------------------------------------- /ngnix/youtube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/ngnix/youtube -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/package.json -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /public/stylesheets/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/public/stylesheets/style.styl -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/routes/index.js -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /scripts/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/scripts/youtube.js -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/welcome.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshujade/nodejs-upload-youtube-video-using-google-api/HEAD/views/welcome.ejs --------------------------------------------------------------------------------