You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Update: September 2016**: New forces are put in place to drive the code forward.
14
14
15
-
16
-
17
15
Parallel.js is a library for to make parallel computing in Javascript simple. It works in Node.js and in the Web Browser.
18
16
Parallel takes advantage of Web Workers for the web, and child processes for Node.
19
17
20
18
# Installation
21
-
You can download the raw javascript file [here](https://raw.github.com/adambom/parallel.js/master/lib/parallel.js)
22
-
23
-
Just include it via a script tag in your HTML page
24
-
25
-
Parallel.js is also available as a node module:
19
+
For node:
26
20
27
21
```bash
28
22
npm install paralleljs --save
29
23
```
30
24
25
+
Download the last javascript file [here](https://raw.github.com/parallel-js/parallel.js/master/lib/parallel.js) and include it via a script tag in your HTML page
0 commit comments