index.js 209 B

123456789101112
  1. import Koa from 'koa';
  2. import db from './db/index.js';
  3. const app = new Koa();
  4. app.use(async (ctx) => {
  5. ctx.body = 'hh';
  6. });
  7. app.listen(4000, () => {
  8. console.log('Server is running at port:', 4000);
  9. });