From 9dcbd816cdec9d09a366af8470668f3b89ce109c Mon Sep 17 00:00:00 2001 From: Amila Welihinda Date: Wed, 28 Sep 2016 06:47:20 -0700 Subject: [PATCH] Revert "Update readme" --- README.md | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index d5e26fc..59458a0 100644 --- a/README.md +++ b/README.md @@ -6,36 +6,28 @@ Parallel.js [![npm](https://img.shields.io/npm/dm/paralleljs.svg?maxAge=2592000)]() -_Easy multi-core processing with javascript._ +_Easy Parallel Computing with Javascript_ > Please note that version 2.1 is 2 years old > **Update: September 2016**: New forces are put in place to drive the code forward. + + Parallel.js is a library for to make parallel computing in Javascript simple. It works in Node.js and in the Web Browser. Parallel takes advantage of Web Workers for the web, and child processes for Node. # Installation -For node: +You can download the raw javascript file [here](https://raw.github.com/adambom/parallel.js/master/lib/parallel.js) -```bash -npm install paralleljs --save -``` +Just include it via a script tag in your HTML page -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 +Parallel.js is also available as a node module: -```html - +```bash +npm install paralleljs --save ``` - - -# Compatibility -Tested on Node.js 6 and 4 - -[![browser support](https://ci.testling.com/adambom/parallel.js.png)](https://ci.testling.com/adambom/parallel.js) - - # Usage #### `Parallel(data, opts)` @@ -221,6 +213,5 @@ p = new Parallel([1, 2, 3], { p.map(d => d * global.parallel.a); ``` ----- - -[![Throughput Graph](https://graphs.waffle.io/parallel-js/parallel.js/throughput.svg)](https://waffle.io/parallel-js/parallel.js/metrics/throughput) +# Compatibility +[![browser support](https://ci.testling.com/adambom/parallel.js.png)](https://ci.testling.com/adambom/parallel.js)