aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw6/strap012_hw6/index.js
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2021-04-13 14:22:16 -0500
committerRossTheRoss <mstrapp@protonmail.com>2021-04-13 14:22:16 -0500
commit20dba29f9c01e6ff4142fc8dd73d7e7c33a42034 (patch)
tree2081f57a595a438a40904210139c495defd994ff /csci4131/hw6/strap012_hw6/index.js
parentoops (diff)
downloadhomework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar.gz
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar.bz2
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar.lz
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar.xz
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.tar.zst
homework-20dba29f9c01e6ff4142fc8dd73d7e7c33a42034.zip
start hw6
Diffstat (limited to 'csci4131/hw6/strap012_hw6/index.js')
-rw-r--r--csci4131/hw6/strap012_hw6/index.js75
1 files changed, 75 insertions, 0 deletions
diff --git a/csci4131/hw6/strap012_hw6/index.js b/csci4131/hw6/strap012_hw6/index.js
new file mode 100644
index 0000000..a81fbd1
--- /dev/null
+++ b/csci4131/hw6/strap012_hw6/index.js
@@ -0,0 +1,75 @@
+// YOU CAN USE THIS FILE AS REFERENCE FOR SERVER DEVELOPMENT
+const createError = require('http-errors');
+
+// Include the express module
+const express = require('express');
+
+// helps in extracting the body portion of an incoming request stream
+var bodyparser = require('body-parser');
+
+// Path module - provides utilities for working with file and directory paths.
+const path = require('path');
+
+// Helps in managing user sessions
+const session = require('express-session');
+
+// include the mysql module
+var mysql = require('mysql');
+
+// Bcrypt library for comparing password hashes
+const bcrypt = require('bcrypt');
+
+// Include the express router.
+const utilities = require('./api/utilities');
+
+const port = 9001;
+
+// create an express application
+const app = express();
+
+// Use express-session
+// In-memory session is sufficient for this assignment
+app.use(session({
+ secret: "csci4131secretkey",
+ saveUninitialized: true,
+ resave: false
+ }
+));
+
+// middle ware to serve static files
+app.use(express.static(path.join(__dirname, 'public')));
+
+// server listens on port 9002 for incoming connections
+app.listen(port, () => console.log('Listening on port', port));
+
+app.get('/', function (req, res) {
+ res.sendFile(path.join(__dirname, 'public/welcome.html'));
+});
+
+// GET method route for the contacts page.
+// It serves contact.html present in public folder
+app.get('/contacts', function(req, res) {
+ // TODO: Add Implementation
+});
+
+// TODO: Add implementation for other necessary end-points
+
+// Makes Express use a router called utilities
+app.use('/api', utilities);
+
+// function to return the 404 message and error to client
+app.use(function (req, res, next) {
+ next(createError(404));
+});
+
+// error handler
+app.use(function (err, req, res, next) {
+ // set locals, only providing error in development
+ res.locals.message = err.message;
+ res.locals.error = req.app.get('env') === 'development' ? err : {};
+
+ // render the error page
+ res.status(err.status || 500);
+ // res.render('error');
+ res.send();
+}); \ No newline at end of file