Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

node: rename from io.js to node #2884

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ There are three ways to run benchmark tests:

For example, buffers:

```sh
iojs benchmark/common.js buffers
```bash
node benchmark/common.js buffers
```

The above command will find all scripts under `buffers` directory and require
Expand Down Expand Up @@ -87,8 +87,8 @@ The last number is the rate of operations. Higher is better.

For example, buffer-slice.js:

```sh
iojs benchmark/buffers/buffer-read.js
```bash
node benchmark/buffers/buffer-read.js
```
The output:
```
Expand All @@ -104,8 +104,8 @@ This example will run only the first type of url test, with one iteration.
(Note: benchmarks require __many__ iterations to be statistically accurate.)


```sh
iojs benchmark/url/url-parse.js type=one n=1
```bash
node benchmark/url/url-parse.js type=one n=1
```
Output:
```
Expand Down