OOX - 0.2.0 发布, 使用 Node.JS 快速构建分布式服务

栏目: 软件资讯 · 发布时间: 3年前

内容简介:更新内容 使用AsyncLocalStorage 实现链路调用跟踪, 替换旧的属性名记录上下文@5eb5fe8 修复微服务模式下, 入口文件为 index.js 且未创建服务目录时, 栈溢出问题@ffa212d Socket.IO 更新至4.4.0 OOX 是什么 基于 ...

OOX - 0.2.0 发布, 使用 Node.JS 快速构建分布式服务

更新内容

  1. 使用AsyncLocalStorage 实现链路调用跟踪, 替换旧的属性名记录上下文@5eb5fe8
  2. 修复微服务模式下, 入口文件为 index.js 且未创建服务目录时, 栈溢出问题@ffa212d
  3. Socket.IO 更新至4.4.0

OOX 是什么

基于 Node.JS 实现的,更简单更快速的微服务解决方案,告别路由定义和各种配置文件,和调用本地函数一样调用远程服务,同时当不需要微服务运行时,也可以像传统应用一样单例运行。

服务端口不变同时支持 HTTP / Socket.IO,既能满足一般类 Web 的接口调用需求,又能满足长连接流式数据传输。

示例

// demo/index.js
const calculator = require ( './calculator' )

exports.calc = async exp => {

    const [ arg1, arg2 ] = exp.match ( /\d+/g )

    const [ op ] = exp.match(/[\+\-\*\/]/g)

    const returns = await calculator [ op ] ( +arg1, +arg2 )

    return `${arg1}${op}${arg2}=${returns}`
}



// demo/calculator.js
module.exports = {
    '+': ( a, b ) => a + b,
    '-': ( a, b ) => a - b,
    '*': ( a, b ) => a * b,
    '/': ( a, b ) => a / b,
}

单例运行

oox index.js port=8001

微服务运行

# 8001端口运行 index 服务
oox group=demo demo/index.js port=8001

# 随机端口运行 culator 服务, 并在主服务注册
oox group=demo demo/calculator.js registry=:8001

访问

# httpie 为例
http :8001 action=calc params='3*5'

以上所述就是小编给大家介绍的《OOX - 0.2.0 发布, 使用 Node.JS 快速构建分布式服务》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Algorithms of the Intelligent Web

Algorithms of the Intelligent Web

Haralambos Marmanis、Dmitry Babenko / Manning Publications / 2009-7-8 / GBP 28.99

Web 2.0 applications provide a rich user experience, but the parts you can't see are just as important-and impressive. They use powerful techniques to process information intelligently and offer featu......一起来看看 《Algorithms of the Intelligent Web》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换