app1.js 294 B

12345678910111213
  1. /*
  2. * @Description:
  3. * @Autor: kindring
  4. * @Date: 2021-11-16 14:55:20
  5. * @LastEditors: kindring
  6. * @LastEditTime: 2021-11-16 14:58:44
  7. * @LastDescript:
  8. */
  9. const express = require('express')
  10. const app = express();
  11. app.get('/', (req, res) => { res.send('app1') })
  12. app.listen('0.0.0.0', 8090);