英文: Does Go have callback concept? 问题 我发现很多讨论都说Node.js因为回调地狱而不好,而Go语言因为其同步模型而好。 我感觉Go语言也可以像Node.js一样...
在Golang中使用Bcrypt进行密码哈希(与Node.js兼容)?
英文: Bcrypt password hashing in Golang (compatible with Node.js)? 问题 我使用Node.js+passport设置了一个用于用户身份验证...
How to structure code for a restful API with Express.js?
英文: How to structure code for a restful API with Express.js? 问题 最近,我一直在使用Sails.js构建一个REST API。我确定了我应...
WebSocket的最佳工具有哪些?
英文: What are the best tools for websocket? 问题 我在我的项目中使用Node.js进行通知。我使用socket.io和redis pub/sub。我喜欢soc...
可以使用Go编写原生的Node.js扩展,而不是使用C++吗?
英文: Could one write a native Node.js extension in Go, as opposed to C++? 问题 这就是我问题的全部内容,但我认为这是一个有趣的问...
Golang的JSON编码以便在JavaScript中解析
英文: Golang JSON encoding for parsing with JavaScript 问题 我有一个类似这样的结构体: type User struct { Login strin...
将 MD5 从 Node.js 移植到 Go 语言。
英文: Porting MD5 from node.js to go 问题 我有一个在node.js中的身份验证逻辑。 var crypto = require('crypto'); ...
如何从Node中正确终止一个Go进程
英文: How to properly kill a Go process from Node 问题 我想要构建一个Grunt任务,当Go源文件发生变化时,它会生成一个Go服务器,然后杀死并重新生成它...
how to implement a readUInt16BE function in node.js
英文: how to implement a readUInt16BE function in node.js 问题 在Node.js中,readUint16BE函数的声明如下: buf.readUI...
Golang – 库是否需要是非阻塞的?
英文: Golang - do libraries need to be non-blocking? 问题 我理解的是,非阻塞的网络服务器(如node.js、eventmachine、tornado)...
165