https://github.com/lcnetdev/bfe
Raw File
Tip revision: d857ebb3864d911108ed888a1a8715257642a3de authored by Trail on 15 March 2023, 17:11:10 UTC
update readme to point to marva
Tip revision: d857ebb
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