Koa.js の使い方
次のページを参考にしました。
koa
インストール
$ sudo npm install -g koa
+ [email protected]
added 44 packages from 22 contributors in 7.383s
サンプルのプログラム
ex01.js
// ---------------------------------------------------------------
// ex01.js
//
// Dec/27/2020
// ---------------------------------------------------------------
const Koa = require('koa')
const app = new Koa()
console.error ("*** ex01 *** start ***")
app.use(async ctx => {
var str_out = 'Hello World!\n'
str_out += 'こんにちは\n'
str_out += 'Dec/27/2020\n'
ctx.body = str_out
})
app.listen(3000);
// ---------------------------------------------------------------
サーバーの実行
export NODE_PATH=/usr/lib/node_modules
node ex01.js
ブラウザーで、
http://localhost:3000/
にアクセス
次のバージョンで確認しました。
$ node --version
v14.15.3
$ npm view koa version
2.13.0
Author And Source
この問題について(Koa.js の使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/47c81aaae61f2c1ffa7a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .