First working version. Fixed problem with incrementing & cached data / multiple processes.

This commit is contained in:
2022-03-09 08:25:58 -08:00
commit 6287ab13cb
8 changed files with 5683 additions and 0 deletions

10
routes/index.js Normal file
View File

@@ -0,0 +1,10 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
//res.render('index', { title: 'Express' });
res.status(400);
});
module.exports = router;