bootstrap.js 200 B

12345678
  1. const WebFramework = require('@midwayjs/web').Framework;
  2. const web = new WebFramework().configure({
  3. port: 8001,
  4. });
  5. const { Bootstrap } = require('@midwayjs/bootstrap');
  6. Bootstrap.load(web).run();