gpt4 book ai didi

node.js - 如何构建 Node/Angular/Socket.io 项目?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:51 25 4
gpt4 key购买 nike

我正在开发一个使用 AngularJS 和 Socket.io 的项目。我找到了 this非常好的集成示例。

这是项目结构:

app.js                  --> app config
bower.json --> for bower
package.json --> for npm
public/ --> all of the files to be used in on the client side
css/ --> css files
app.css --> default stylesheet
img/ --> image files
js/ --> javascript files
app.js --> declare top-level app module
controllers.js --> application controllers
directives.js --> custom angular directives
filters.js --> custom angular filters
services.js --> custom angular services
bower_components/
angular/ --> angular.js
angular-socket-io/ --> socket.io adapter for angular
routes/
index.js --> route for serving HTML pages and partials
socket.js --> serve content over a socket
api.js --> serve JSON to our AngularJS client
views/
index.jade --> main page for app
layout.jade --> doctype, title, head boilerplate
partials/ --> angular view partials (partial jade templates)
partial1.jade
partial2.jade

在 app.js 中:

var express = require('express'),
routes = require('./routes'),
api = require('./routes/api'),
socket = require('./routes/socket');

...

// serve index and view partials
app.get('/', routes.index);
app.get('/partials/:name', routes.partials);

// JSON API
app.get('/api/name', api.name);

// redirect all others to the index (HTML5 history)
app.get('*', routes.index);

// Socket.io Communication
io.sockets.on('connection', require('./routes/socket'));

现在,虽然通常我只是将服务器逻辑放在 app.js 中,但这里的逻辑似乎分为 api.jssocket。 jsindex.js - 我非常喜欢这个。

但是,假设在 socket.js 中我需要使用在 api.js 中定义的东西。我应该添加一个 var api = require( './api');socket.js?

最佳答案

我最终创建了模块/对象,将所有内容导入 app.js 并通过相互引用传递它们(需要时)..

  var mashup = require('./routes/mashupModule'),
socket = require('./routes/socketModule'),
browser = require('./routes/browserModule');

socket.init(server, browser, mashup);
browser.init(socket, mashup);

不确定这是否是在代码中进行某种分离的最佳方式。我习惯了 Java,这很糟糕,在 JS 中它通常是一个大源文件。

关于node.js - 如何构建 Node/Angular/Socket.io 项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17491758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com