Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Express を使用すると、次のように関数 get() を簡単に呼び出すことができます。
var app = express(); app.get('/',function(req,res){ // do stuff })
node.js で同等のものは何ですか? では、エクスプレスなしでどうすれば同じことを行うことができますか?