├── .gitignore ├── LICENSE ├── README.md ├── Thumbs.db ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg ├── img5.jpg ├── scotch-chat-main-app ├── .bowerrc ├── app │ ├── app.js │ ├── assets │ │ └── icons │ │ │ ├── play-icon.hqx │ │ │ ├── play-icon.icns │ │ │ └── play-icon.ico │ ├── index.html │ ├── public │ │ ├── css │ │ │ ├── animate.css │ │ │ └── app.css │ │ ├── img │ │ │ ├── Thumbs.db │ │ │ ├── User.png │ │ │ ├── ic_chat_bubble_24px.svg │ │ │ └── scotch.png │ │ ├── js │ │ │ └── app.js │ │ └── partials │ │ │ ├── head.html │ │ │ └── username.tmpl.html │ ├── routes │ │ └── index.js │ └── views │ │ └── index.ejs ├── bower.json ├── gulpFile.js └── package.json ├── scotch-chat-web ├── public │ ├── css │ │ ├── animate.css │ │ └── app.css │ ├── img │ │ ├── Thumbs.db │ │ ├── User.png │ │ ├── ic_chat_bubble_24px.svg │ │ └── scotch.png │ ├── js │ │ └── app.js │ └── partials │ │ ├── head.html │ │ └── username.tmpl.html ├── routes │ └── index.js ├── server.js └── views │ └── index.ejs ├── scotch-logo-small.png └── socket-chat-server ├── .gitignore ├── Procfile ├── index.js ├── package.json └── public ├── index.html ├── jquery.min.js └── jquery.min.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/README.md -------------------------------------------------------------------------------- /Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/Thumbs.db -------------------------------------------------------------------------------- /img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/img1.jpg -------------------------------------------------------------------------------- /img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/img2.jpg -------------------------------------------------------------------------------- /img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/img3.jpg -------------------------------------------------------------------------------- /img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/img4.jpg -------------------------------------------------------------------------------- /img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/img5.jpg -------------------------------------------------------------------------------- /scotch-chat-main-app/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/.bowerrc -------------------------------------------------------------------------------- /scotch-chat-main-app/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/app.js -------------------------------------------------------------------------------- /scotch-chat-main-app/app/assets/icons/play-icon.hqx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/assets/icons/play-icon.hqx -------------------------------------------------------------------------------- /scotch-chat-main-app/app/assets/icons/play-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/assets/icons/play-icon.icns -------------------------------------------------------------------------------- /scotch-chat-main-app/app/assets/icons/play-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/assets/icons/play-icon.ico -------------------------------------------------------------------------------- /scotch-chat-main-app/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/index.html -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/css/animate.css -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/css/app.css -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/img/Thumbs.db -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/img/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/img/User.png -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/img/ic_chat_bubble_24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/img/ic_chat_bubble_24px.svg -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/img/scotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/img/scotch.png -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/js/app.js -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/partials/head.html -------------------------------------------------------------------------------- /scotch-chat-main-app/app/public/partials/username.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/public/partials/username.tmpl.html -------------------------------------------------------------------------------- /scotch-chat-main-app/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/routes/index.js -------------------------------------------------------------------------------- /scotch-chat-main-app/app/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/app/views/index.ejs -------------------------------------------------------------------------------- /scotch-chat-main-app/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/bower.json -------------------------------------------------------------------------------- /scotch-chat-main-app/gulpFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/gulpFile.js -------------------------------------------------------------------------------- /scotch-chat-main-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-main-app/package.json -------------------------------------------------------------------------------- /scotch-chat-web/public/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/css/animate.css -------------------------------------------------------------------------------- /scotch-chat-web/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/css/app.css -------------------------------------------------------------------------------- /scotch-chat-web/public/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/img/Thumbs.db -------------------------------------------------------------------------------- /scotch-chat-web/public/img/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/img/User.png -------------------------------------------------------------------------------- /scotch-chat-web/public/img/ic_chat_bubble_24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/img/ic_chat_bubble_24px.svg -------------------------------------------------------------------------------- /scotch-chat-web/public/img/scotch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/img/scotch.png -------------------------------------------------------------------------------- /scotch-chat-web/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/js/app.js -------------------------------------------------------------------------------- /scotch-chat-web/public/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/partials/head.html -------------------------------------------------------------------------------- /scotch-chat-web/public/partials/username.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/public/partials/username.tmpl.html -------------------------------------------------------------------------------- /scotch-chat-web/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/routes/index.js -------------------------------------------------------------------------------- /scotch-chat-web/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/server.js -------------------------------------------------------------------------------- /scotch-chat-web/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-chat-web/views/index.ejs -------------------------------------------------------------------------------- /scotch-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/scotch-logo-small.png -------------------------------------------------------------------------------- /socket-chat-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /socket-chat-server/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /socket-chat-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/socket-chat-server/index.js -------------------------------------------------------------------------------- /socket-chat-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/socket-chat-server/package.json -------------------------------------------------------------------------------- /socket-chat-server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/socket-chat-server/public/index.html -------------------------------------------------------------------------------- /socket-chat-server/public/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/socket-chat-server/public/jquery.min.js -------------------------------------------------------------------------------- /socket-chat-server/public/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/node-webkit-chat/HEAD/socket-chat-server/public/jquery.min.map --------------------------------------------------------------------------------