https://github.com/lcnetdev/bfe
Raw File
Tip revision: 5222a95850c27995970813326e1911fa770f033c authored by Kevin Ford on 09 October 2020, 19:11:19 UTC
Bumping node version
Tip revision: 5222a95
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