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 mongoose = require('mongoose') | |
const routes = require('./routes') | |
const server = express(); | |
mongoose.connect('mongodb://localhost/mydb', { useNewUrlParser: true }) | |
server.use(express.json()) | |
server.listen(3333); |
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 LocationController = require('./controllers/LocationController') | |
const UserController = require('./controllers/UserController') | |
const routes = express.Router() | |
routes.post('/users', UserController.store) | |
module.exports = routes |
OlderNewer