これが私のコードです
var express = require('express');
var fs = require('fs');
var config = JSON.parse(fs.readFileSync("./config.json"));
console.log(config);
var host = config.host;
var port = config.port;
var app = express.createServer();
// use route
app.use(app.router);
// for static files this location
app.use(express.static(__dirname));
// root path
app.get('/', function (request, response) {
response.send("hello");
});
app.get("/id/:id", function (request, reponse) {
var value = request.params.id;
console.log(value);
response.send(value.toString());
});
app.listen(port, host);
URL 127.0.0.1:3317/id/ helloの id の後の値をログに記録できます
Hello がコンソールに出力されますが、ReferenceError: response is not defined エラーがあります。
私を助けてください