Node.js 中的应用程序结构?
我熟悉 Java Web 容器,其中 Web 应用程序部署为 war
文件。
我很困惑如何在 Node.js 中部署 CSS、JS、HTML、图像(等等)。如何做到这一点?
我对 Node.js 的了解非常有限。提前致谢!
I am familiar with Java web containers, where web applications are deployed as war
files.
I am confused how to deploy CSS, JS, HTML, images (and so on) in Node.js. How does one do this?
I have very limited knowledge of Node.js. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://expressjs.com/
http://expressjs.com/ /expressjs.com/guide.html#configuration
app.js
index.html
index.css
目录结构:
运行您的应用程序:
node app.js
访问您的网站:
http ://localhost:8888
目录和文件名是任意的。一切都是可配置的,没有什么是复杂的。一般来说,没有人试图让您与节点中的特定目录结构或命名方案绑定。
去抓住他们吧,老虎。
http://expressjs.com/
http://expressjs.com/guide.html#configuration
app.js
index.html
index.css
Directory structure:
Run your app:
node app.js
Go visit your website:
http://localhost:8888
The directory and file names are arbitrary. Everything is configurable, nothing is complicated. Nobody's trying to keep you tied to a specific directory structure or naming scheme in node, generally speaking.
Go get em, tiger.