Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
550 views
in Technique[技术] by (71.8m points)

javascript - what's the technical difference between express and http, and connect for that matter

var express = require("express")
  , app = express()
  , http = require("http").createServer(app)

I constantly see these being put on the dependencies. From my point of understanding, http hosts front-end html? and express holds server-sided nodejs logic? and connect was the base layer of express so is that also a server-sided module?

If that's not the case why not people just do

express().listen(8080)

instead of

require("http").createServer(express()).listen(8080)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Express is another layer on top of http. It takes care of basic repeated tasks that are required for an web application. connect is a middleware, which too takes care of basic repeated tasks that are required for an web application.

The whole idea, behind using any framework is to stay DRY, Don't Repeat Yourself. Tasks like, parsing the body of the request, parsing cookies are very much required for every web-application. Express provides them by default.

In the Express 4.x, most of it has been refactored in to several granular modules, like body-parser, morgan etc. One can use them directly without using express. Please refer Express - GitHub for complete set of modules.

Express is another layer on top of http means Express internally uses http. In other words, it is a wrapper over http. If you look at the source code of Express, you will find that it internally uses http. Please refer the highlighted statements at https://github.com/strongloop/express/blob/master/lib/application.js#L540-543


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...