├── .DS_Store ├── .idea ├── Code4Share.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── app.js ├── bin └── www ├── config.js ├── models ├── task.js └── user.js ├── package.json ├── passport.js ├── public ├── plugins │ └── ot │ │ └── ot.js └── stylesheets │ └── style.css ├── routes ├── auth.js ├── index.js └── task.js ├── snaps ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png ├── socket-server.js └── views ├── about.hbs ├── contact.hbs ├── error.hbs ├── index.hbs ├── layout.hbs ├── login.hbs ├── register.hbs ├── task.hbs └── thank.hbs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/Code4Share.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/.idea/Code4Share.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/bin/www -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/config.js -------------------------------------------------------------------------------- /models/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/models/task.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/models/user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/package.json -------------------------------------------------------------------------------- /passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/passport.js -------------------------------------------------------------------------------- /public/plugins/ot/ot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/public/plugins/ot/ot.js -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/routes/auth.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/routes/task.js -------------------------------------------------------------------------------- /snaps/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/1.png -------------------------------------------------------------------------------- /snaps/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/2.png -------------------------------------------------------------------------------- /snaps/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/3.png -------------------------------------------------------------------------------- /snaps/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/4.png -------------------------------------------------------------------------------- /snaps/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/5.png -------------------------------------------------------------------------------- /snaps/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/snaps/6.png -------------------------------------------------------------------------------- /socket-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/socket-server.js -------------------------------------------------------------------------------- /views/about.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/about.hbs -------------------------------------------------------------------------------- /views/contact.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/contact.hbs -------------------------------------------------------------------------------- /views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/error.hbs -------------------------------------------------------------------------------- /views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/index.hbs -------------------------------------------------------------------------------- /views/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/layout.hbs -------------------------------------------------------------------------------- /views/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/login.hbs -------------------------------------------------------------------------------- /views/register.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/register.hbs -------------------------------------------------------------------------------- /views/task.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/task.hbs -------------------------------------------------------------------------------- /views/thank.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhsanket143/LiveCodeShareNode/HEAD/views/thank.hbs --------------------------------------------------------------------------------