Skip to content

Commit e0e9255

Browse files
mureinikMylesBorins
authored andcommitted
Fix the link to BFJ
The documentation mentions Big-Friendly JSON (BFJ), but links to an outdated, archived, GitHub repository (https://github.com/philbooth/bfj). A better option would be to link to the NPM package page (https://www.npmjs.com/package/bfj), in a similar way to how JSONStream is referenced earlier in the same paragraph. Closes #2438
1 parent 016c7ab commit e0e9255

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

locale/en/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ console.log('JSON.parse took ' + took);
279279

280280
There are npm modules that offer asynchronous JSON APIs. See for example:
281281
- [JSONStream](https://www.npmjs.com/package/JSONStream), which has stream APIs.
282-
- [Big-Friendly JSON](https://github.com/philbooth/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
282+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
283283

284284
### Complex calculations without blocking the Event Loop
285285
Suppose you want to do complex calculations in JavaScript without blocking the Event Loop.

locale/fa/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ console.log('JSON.parse took ' + took);
279279

280280
There are npm modules that offer asynchronous JSON APIs. See for example:
281281
- [JSONStream](https://www.npmjs.com/package/JSONStream), which has stream APIs.
282-
- [Big-Friendly JSON](https://github.com/philbooth/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
282+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
283283

284284
### Complex calculations without blocking the Event Loop
285285
Suppose you want to do complex calculations in JavaScript without blocking the Event Loop.

locale/it/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ console.log('JSON.parse took ' + took);
279279

280280
There are npm modules that offer asynchronous JSON APIs. See for example:
281281
- [JSONStream](https://www.npmjs.com/package/JSONStream), which has stream APIs.
282-
- [Big-Friendly JSON](https://github.com/philbooth/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
282+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
283283

284284
### Complex calculations without blocking the Event Loop
285285
Suppose you want to do complex calculations in JavaScript without blocking the Event Loop.

locale/ja/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ console.log('JSON.parse took ' + took);
279279

280280
There are npm modules that offer asynchronous JSON APIs. See for example:
281281
- [JSONStream](https://www.npmjs.com/package/JSONStream), which has stream APIs.
282-
- [Big-Friendly JSON](https://github.com/philbooth/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
282+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
283283

284284
### Complex calculations without blocking the Event Loop
285285
Suppose you want to do complex calculations in JavaScript without blocking the Event Loop.

locale/ru/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ console.log('JSON.parse took ' + took);
279279

280280
There are npm modules that offer asynchronous JSON APIs. See for example:
281281
- [JSONStream](https://www.npmjs.com/package/JSONStream), which has stream APIs.
282-
- [Big-Friendly JSON](https://github.com/philbooth/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
282+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj), which has stream APIs as well as asynchronous versions of the standard JSON APIs using the partitioning-on-the-Event-Loop paradigm outlined below.
283283

284284
### Complex calculations without blocking the Event Loop
285285
Suppose you want to do complex calculations in JavaScript without blocking the Event Loop.

locale/zh-cn/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ console.log('JSON.parse took ' + took);
280280

281281
有一些 npm 的模块提供了异步的 JSON API 函数,参考:
282282
- [JSONStream](https://www.npmjs.com/package/JSONStream),有流式操作的 API。
283-
- [Big-Friendly JSON](https://github.com/philbooth/bfj),有流式 API 和使用下文所概述的任务拆分思想的异步 JSON 标准 API。
283+
- [Big-Friendly JSON](https://www.npmjs.com/package/bfj),有流式 API 和使用下文所概述的任务拆分思想的异步 JSON 标准 API。
284284

285285
### 不要让复杂的计算阻塞事件循环
286286
假设你想在 JavaScript 处理一个复杂的计算,而又不想阻塞事件循环。

0 commit comments

Comments
 (0)