Metis portal provides a user-friendly frontend for the Metis API which is written in Vue.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
245 B

4 years ago
  1. var express = require('express');
  2. var path = require('path');
  3. var serveStatic = require('serve-static');app = express();
  4. app.use(serveStatic(__dirname));var port = process.env.PORT || 5000;
  5. app.listen(port);console.log('server started '+ port);