https://github.com/lcnetdev/bfe
Raw File
Tip revision: 255cdcbd250e325d0fb94a421e78c0cfb8cabf5e authored by dependabot[bot] on 08 June 2021, 17:54:15 UTC
Bump glob-parent from 5.1.1 to 5.1.2
Tip revision: 255cdcb
server-bfe.js
//   Minimal BIBFRAME Editor Node.js server. To run from the command-line:
//   node server-bfe.js

var port = 8000;
var express = require('express');
 
var app = express();
 
app.use(express.static(__dirname + '/'));
app.listen(port);

console.log('BIBFRAME Editor running on ' + port);
console.log('Press Ctrl + C to stop.'); 
back to top