bootstrap.js 286 B

123456789101112
  1. const { Framework } = require("@midwayjs/koa");
  2. const { Bootstrap } = require("@midwayjs/bootstrap");
  3. const web = new Framework().configure({
  4. port: 7002,
  5. });
  6. Bootstrap.load(web)
  7. .run()
  8. .then(() => {
  9. console.log("Your application is running at http://localhost:7002");
  10. });