Skip to content

Commit 6e2ae9e

Browse files
committed
Sync french to original
Up to date goldbergyoni@4f570b8
1 parent 03410e8 commit 6e2ae9e

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

README.french.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<br/>
1010

1111
<div align="center">
12-
<img src="https://img.shields.io/badge/⚙%20Item%20count%20-%20102%20Best%20Practices-blue.svg" alt="102 items"> <img src="https://img.shields.io/badge/%F0%9F%93%85%20Last%20update%20-%20February%2012%202021-green.svg" alt="Dernière mise à jour : Novembre 2020"> <img src="https://img.shields.io/badge/ %E2%9C%94%20Updated%20For%20Version%20-%20Node%2014.0.0-brightgreen.svg" alt="Mis à jour pour Node 14.0.0">
12+
<img src="https://img.shields.io/badge/⚙%20Item%20count%20-%20102%20Best%20Practices-blue.svg" alt="102 items"> <img id="last-update-badge" src="https://img.shields.io/badge/%F0%9F%93%85%20Last%20update%20-%20February%2012%202021-green.svg" alt="Dernière mise à jour : Novembre 2020"> <img src="https://img.shields.io/badge/ %E2%9C%94%20Updated%20For%20Version%20-%20Node%2014.0.0-brightgreen.svg" alt="Mis à jour pour Node 14.0.0">
1313
</div>
1414

1515
<br/>
@@ -1568,6 +1568,11 @@ Merci à ces merveilleuses personnes qui ont contribué à ce dépôt !
15681568
<td align="center"><a href="https://github.com/kubanac95"><img src="https://avatars.githubusercontent.com/u/16191931?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Aleksandar</b></sub></a><br /><a href="#content-kubanac95" title="Content">🖋</a></td>
15691569
<td align="center"><a href="http://vincentjonathan.com"><img src="https://avatars.githubusercontent.com/u/32597776?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Owl</b></sub></a><br /><a href="#content-SuspiciousLookingOwl" title="Content">🖋</a></td>
15701570
<td align="center"><a href="https://github.com/yedidyas"><img src="https://avatars.githubusercontent.com/u/36074789?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yedidya Schwartz</b></sub></a><br /><a href="#content-yedidyas" title="Content">🖋</a> <a href="#example-yedidyas" title="Examples">💡</a></td>
1571+
<td align="center"><a href="https://github.com/ariel-diaz"><img src="https://avatars.githubusercontent.com/u/20423540?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ari</b></sub></a><br /><a href="#content-ariel-diaz" title="Content">🖋</a></td>
1572+
</tr>
1573+
<tr>
1574+
<td align="center"><a href="http://www.koenigthomas.de/"><img src="https://avatars.githubusercontent.com/u/7080389?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Thomas König</b></sub></a><br /><a href="#content-Vispercept" title="Content">🖋</a></td>
1575+
<td align="center"><a href="https://github.com/coocos"><img src="https://avatars.githubusercontent.com/u/1397804?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Kalle Lämsä</b></sub></a><br /><a href="#content-coocos" title="Content">🖋</a></td>
15711576
</tr>
15721577
</table>
15731578

sections/errorhandling/centralizedhandling.french.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ app.use(async (err, req, res, next) => {
3535

3636
process.on("uncaughtException", error => {
3737
errorHandler.handleError(error);
38-
});
38+
});
3939

40-
process.on("unhandledRejection", (reason) => {
41-
errorHandler.handleError(reason);
42-
});
40+
process.on("unhandledRejection", (reason) => {
41+
errorHandler.handleError(reason);
42+
});
4343
```
4444
</details>
4545

@@ -72,11 +72,11 @@ app.use(async (err: Error, req: Request, res: Response, next: NextFunction) => {
7272

7373
process.on("uncaughtException", (error:Error) => {
7474
errorHandler.handleError(error);
75-
});
75+
});
7676

77-
process.on("unhandledRejection", (reason) => {
78-
errorHandler.handleError(reason);
79-
});
77+
process.on("unhandledRejection", (reason) => {
78+
errorHandler.handleError(reason);
79+
});
8080
```
8181
</details>
8282

sections/performance/block-loop.french.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ while loop.
4747
>[Don't Block the Event Loop (or the Worker Pool) | Node.js](https://nodejs.org/en/docs/guides/dont-block-the-event-loop/)
4848
4949
> Most people fail their first few NodeJS apps merely due to the lack of understanding of the concepts such as the Event Loop, Error handling and asynchrony
50-
[Event Loop Best Practices — NodeJS Event Loop Part 5](https://jsblog.insiderattack.net/event-loop-best-practices-nodejs-event-loop-part-5-e29b2b50bfe2)
50+
[Event Loop Best Practices — NodeJS Event Loop Part 5](https://blog.insiderattack.net/event-loop-best-practices-nodejs-event-loop-part-5-e29b2b50bfe2)

0 commit comments

Comments
 (0)