Napa.js: a multi-threaded JavaScript runtime
Перейти к файлу
Zhang Lei aa2e7fe83e
Samples to show napa's node worker could use core node modules and top npm modules. (#245)
2018-06-19 15:38:52 -07:00
benchmark Release candidate for 0.1.0 (#23) 2017-08-03 16:14:30 -07:00
docs Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
examples Samples to show napa's node worker could use core node modules and top npm modules. (#245) 2018-06-19 15:38:52 -07:00
inc clean macro NAPA_API and NAPA_BINDING_API (#244) 2018-06-04 19:01:52 -07:00
lib Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
scripts napa embeded support for Linux (#110) 2017-11-08 11:14:18 -08:00
src clean macro NAPA_API and NAPA_BINDING_API (#244) 2018-06-04 19:01:52 -07:00
test Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
third-party Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
unittest Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
.gitignore convert transport builtin types test to TypeScript (#168) 2017-12-23 08:49:09 -08:00
.npmignore Add file npm-debug.log to ignore list (#159) 2017-12-14 14:49:47 -08:00
.travis.yml Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -07:00
CMakeLists.txt prepare build files and documents 2018-05-15 16:29:48 -07:00
LICENSE.txt Merged PR 327505: Merge dev/dapeng/license to master 2017-07-19 00:29:19 +00:00
README.md Add an example that uses napa.sync.Lock (#179) 2018-01-05 15:19:54 -08:00
appveyor.yml Update minimum nodejs version to 10.2.1 and fix CI build (#240) 2018-05-30 22:09:58 -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 update npm dependencies (#241) 2018-06-04 13:51:52 -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) => 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:

  • Report issues and help us verify fixes as they are checked in.
  • Review the source code changes.
  • Contribute to core module compatibility with Node.
  • Contribute bug fixes.

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.

License

Copyright (c) Microsoft Corporation. All rights reserved.

Licensed under the MIT License.