Skip to content

Commit d39014c

Browse files
authored
Revert "Update readme" (#148)
1 parent 10ab429 commit d39014c

File tree

1 file changed

+10
-19
lines changed

1 file changed

+10
-19
lines changed

README.md

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,28 @@ Parallel.js
66
[![npm](https://img.shields.io/npm/dm/paralleljs.svg?maxAge=2592000)]()
77

88

9-
_Easy multi-core processing with javascript._
9+
_Easy Parallel Computing with Javascript_
1010

1111
> Please note that version 2.1 is 2 years old
1212
1313
> **Update: September 2016**: New forces are put in place to drive the code forward.
1414
15+
16+
1517
Parallel.js is a library for to make parallel computing in Javascript simple. It works in Node.js and in the Web Browser.
1618
Parallel takes advantage of Web Workers for the web, and child processes for Node.
1719

1820
# Installation
19-
For node:
21+
You can download the raw javascript file [here](https://raw.github.com/adambom/parallel.js/master/lib/parallel.js)
2022

21-
```bash
22-
npm install paralleljs --save
23-
```
23+
Just include it via a script tag in your HTML page
2424

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
25+
Parallel.js is also available as a node module:
2626

27-
```html
28-
<script src="parallel.js"></script>
27+
```bash
28+
npm install paralleljs --save
2929
```
3030

31-
32-
33-
# Compatibility
34-
Tested on Node.js 6 and 4
35-
36-
[![browser support](https://ci.testling.com/adambom/parallel.js.png)](https://ci.testling.com/adambom/parallel.js)
37-
38-
3931
# Usage
4032

4133
#### `Parallel(data, opts)`
@@ -221,6 +213,5 @@ p = new Parallel([1, 2, 3], {
221213
p.map(d => d * global.parallel.a);
222214
```
223215
224-
----
225-
226-
[![Throughput Graph](https://graphs.waffle.io/parallel-js/parallel.js/throughput.svg)](https://waffle.io/parallel-js/parallel.js/metrics/throughput)
216+
# Compatibility
217+
[![browser support](https://ci.testling.com/adambom/parallel.js.png)](https://ci.testling.com/adambom/parallel.js)

0 commit comments

Comments
 (0)