Node.js 是否“表达”?带有“连接”?
使用 npm 安装 Express 后...如果我想使用“connect”的内置内容,是否必须安装“connect”?
After I install Express using npm....do I have to install "connect" if I want to use "connect"'s built-in stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Express 构建在 connect 之上,因此拥有 connect 的所有内置内容。
Express is built on top of connect and as such has all of connect's built in stuff.
npm 将自动处理依赖关系。
因此,当您执行
npm install express
时,它将安装 express 和所有附加的依赖项。npm will handle dependencies automatically.
So when you do
npm install express
it will install express an all the attached dependencies.