Skip to content

Instantly share code, notes, and snippets.

@dphurley
Created September 25, 2017 19:26
Show Gist options
  • Save dphurley/c311163ab27bab1d57af3f4eca085ad6 to your computer and use it in GitHub Desktop.
Save dphurley/c311163ab27bab1d57af3f4eca085ad6 to your computer and use it in GitHub Desktop.
const express = require('express')
const app = express();
const studentsController = require('./controllers/students_controller')
app.use('/students', studentsController)
const port = 3000;
app.listen(port, () => {
console.log(`Express started on ${port}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment