登录 注册
当前位置:主页 > 资源下载 > 9 > \"Fork-It: NPM 模块\

\"Fork-It: NPM 模块\

  • 更新:2024-11-05 13:19:08
  • 大小:21KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

分叉 Fork-It 是一个 NodeJs 模块,用于处理进程间通信的复杂性。 该库将抽象在两个组件之间发送流程消息的复杂性。 它还在两个进程之间创建了一个本质上非常 RPC 的通信层。 状态:BETA(不稳定) 例如: 简单的父/子进程关系 父.js var forkIt = require('fork-it'); var app = function() {}; //This will we the command we run cross process app.prototype.someCommand = function(msg) { console.log('App 1 Received: ' + msg); }; //Now we fork the proc forkIt.fork(__dirname, 'child.js', new app(), fu