koa2の基礎

ディレクトリ

こんにちは世界


 

/**
 * hello world
 */
const Koa = require('koa');
const App = new Koa();

console.log(Koa);

App.use(async (ctx)=>{
   ctx.body = 'hello world'
});
App.listen('3000',()=>{
    console.log('start-quick is starting at port 3000')
});

 

公開された31元の記事 ウォン称賛13 ビュー10000 +

おすすめ

転載: blog.csdn.net/qq_38694034/article/details/105246060