Created
June 15, 2020 13:46
-
-
Save teyyihan/16b33d01c57f5ebf676280430a2acdc1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const app = express() | |
const bodyParser = require('body-parser') | |
const io = require('socket.io')(3100) | |
const mongoose = require('mongoose') | |
// body-parser | |
app.use(bodyParser.json()) | |
// collections | |
const Users = require('./UserModel') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment