mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/node-tutorial.git
synced 2026-08-19 12:34:16 +00:00
init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
const express = require('express');
|
||||
const logger = require('morgan');
|
||||
const bodyParser = require('body-parser');
|
||||
|
||||
const app = express();
|
||||
app.use(logger('dev'));
|
||||
app.use(bodyParser.json());
|
||||
app.use(bodyParser.urlencoded({ extended: false }));
|
||||
|
||||
// Require our routes into the application.
|
||||
require('./server/routes')(app);
|
||||
app.get('*', (req, res) => res.status(200).send({
|
||||
message: 'Welcome to the beginning of nothingness.',
|
||||
}));
|
||||
|
||||
module.exports = app;
|
||||
Reference in New Issue
Block a user