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.

7 lines
220 B

  1. var express = require('express');
  2. var app = express();
  3. express.static.mime.types['wasm'] = 'application/wasm';
  4. app.use(express.static(__dirname + '/'));
  5. port=8080
  6. app.listen(8080);
  7. console.log("server running at :8080")