generated from esd2-groupwork/template-repository
Currently have the base hello world, with a div for the graph to eventually go in. Plan to use Plotly libraries for 3D graphing
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
var express = require('express');
|
|
var router = express.Router();
|
|
|
|
/* GET users listing. */
|
|
router.get('/', function(req, res, next) {
|
|
res.send('respond with a resource');
|
|
});
|
|
|
|
module.exports = router;
|