05-20 00:00
Notice
Recent Posts
Recent Comments
관리 메뉴

Scientific Computing & Data Science

[Web App/Node.js Express] 서버 실행 후 방문자 카운트 본문

Programming/Web App

[Web App/Node.js Express] 서버 실행 후 방문자 카운트

cinema4dr12 2014. 9. 8. 18:38

[app.js]

var count = 0; app.get('/', function(req, res, next){ count++; res.send(); next(); }); app.get('/count', function(req, res){ res.send("" + count + " visitors."); });


Comments