Napa.js: a multi-threaded JavaScript runtime
Перейти к файлу
Allen Wang bcb87d368a resolve napajs_inc/napajs_lib by build.paths (#57)
* resolve napajs_inc/napajs_lib by build.paths
2017-08-30 10:43:20 -07:00
benchmark Release candidate for 0.1.0 (#23) 2017-08-03 16:14:30 -07:00
docs Polish zone.execute: transported function will inherit __dirname from caller. (#40) 2017-08-16 18:39:36 -07:00
examples resolve napajs_inc/napajs_lib by build.paths (#57) 2017-08-30 10:43:20 -07:00
inc Release candidate for 0.1.0 (#23) 2017-08-03 16:14:30 -07:00
lib Polish zone.execute: transported function will inherit __dirname from caller. (#40) 2017-08-16 18:39:36 -07:00
node Merged PR 327797: Support Mac 2017-07-19 17:00:55 -07:00
scripts Added a script for building napa in embed mode (#47) 2017-08-28 17:21:13 -07:00
src Added a script for building napa in embed mode (#47) 2017-08-28 17:21:13 -07:00
test Enable pre-build for napa.js (#41) 2017-08-17 17:10:20 -07:00
third-party Merged PR 327505: Merge dev/dapeng/license to master 2017-07-19 00:29:19 +00:00
unittest Added a script for building napa in embed mode (#47) 2017-08-28 17:21:13 -07:00
.gitignore Release candidate for 0.1.0 (#23) 2017-08-03 16:14:30 -07:00
.npmignore remove third-party dir in npmignore for building during npm install when pre-build retriving failed (#52) 2017-08-22 19:12:13 -07:00
.travis.yml Update comments in .travis.yml (#53) 2017-08-24 11:04:39 -07:00
CMakeLists.txt Enable pre-build for napa.js (#41) 2017-08-17 17:10:20 -07:00
LICENSE.txt Merged PR 327505: Merge dev/dapeng/license to master 2017-07-19 00:29:19 +00:00
README.md Update AppVeyor account in README (#54) 2017-08-24 11:05:06 -07:00
appveyor.yml Enable pre-build for napa.js (#41) 2017-08-17 17:10:20 -07:00
build.bat Added a script for building napa in embed mode (#47) 2017-08-28 17:21:13 -07:00
build.js Added a script for building napa in embed mode (#47) 2017-08-28 17:21:13 -07:00
package.json Add 'description' field in package.json (#61) 2017-08-29 19:25:42 -07:00

README.md

Build Status for Linux/MacOS Build Status for Windows npm version Downloads

Napa.js

Napa.js is a multi-threaded JavaScript runtime built on V8, which was originally designed to develop highly iterative services with non-compromised performance in Bing. As it evolves, we find it useful to complement Node.js in CPU-bound tasks, with the capability of executing JavaScript in multiple V8 isolates and communicating between them. Napa.js is exposed as a Node.js module, while it can also be embedded in a host process without Node.js dependency.

Installation

Install the latest stable version:

npm install napajs

Other options can be found in Build Napa.js.

Quick Start

var napa = require('napajs');
var zone1 = napa.zone.create('zone1', { workers: 4} );

// Broadcast code to all 4 workers in 'zone1'.
zone1.broadcast('console.log("hello world");');

// Execute an anonymous function in any worker thread in 'zone1'.
zone1.execute(
    (text) => {
        return text;
    }, 
    ['hello napa'])
    .then((result) => {
        console.log(result.value);
    });

More examples:

Features

  • Multi-threaded JavaScript runtime
  • Node.js compatible module architecture with NPM support
  • API for object transportation, object sharing and synchronization across JavaScript threads
  • API for pluggable logging, metric and memory allocator
  • Distributed as a Node.js module, as well as supporting embed scenarios

Documentation

Contribute

You can contribute to Napa.js in following ways:

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Contacts