Node.js Translation to Spanish - ( 1214 words) (Part-75) by cremisi

View this thread on steempeak.com
· @cremisi ·
$11.13
Node.js Translation to Spanish - ( 1214 words) (Part-75)
![](https://cdn.steemitimages.com/DQmbrioY3P2uEDwSfLZciQeL2GUMxPiujLjB3uWQbc4DNv4/image.png)

## Repository
https://github.com/nodejs/i18n

## Project Details

> Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser.

**Node.js** came into existence when the original developers of *JavaScript* extended it from something you could only run in the browser to something you could run on your machine as a standalone application.

In simple words, it's an open source execution environment for developing web applications, which is event-based, it uses the V8 engine to provide an execution environment that compiles and executes JavaScript at a higher speed. It is possible to run Node.js without any restriction on *Windows*, *Linux* and *Mac OS X*.

It should be noted that it is NOT a server language, this means that it executes code, so it could be understood as an interpreter.

## Contribution Specifications

 Node.js is currently being translated into 33 languages. I'm contributing to translate it into the Spanish language. 

<center>![image.png](https://files.steempeak.com/file/steempeak/cremisi/D8ZWcrSq-image.png)</center>

<center>So far, we have managed to translate **74%** of the project!</center>

## Translation Overview

For this occasion I translated two folders: [Backporting-To-Release-Lines.md](https://crowdin.com/translate/nodejs/149/en-es) and [Blocking-Vs-Non-Blocking.md](https://crowdin.com/translate/nodejs/85/en-es#27356)

![image.png](https://files.steempeak.com/file/steempeak/cremisi/mLF1CTDq-image.png)

As the name implies, this module explains in an easy way how to backport* a pull request, what needs to be backported, what can be backported and how to submit a backport pull request.

<center>![felix.gif](https://files.steempeak.com/file/steempeak/cremisi/1JRB1ogr-felix.gif)</center>
<center>*A backport is the action of making modifications to an old version of a software with contributions or patches originated in later versions.</center>

![image.png](https://files.steempeak.com/file/steempeak/cremisi/e8vpgtQc-image.png)

This overview covers the difference between blocking and non-blocking calls in Node.js. This summary refers to the event loop and to libuv, but fortunately no prior knowledge of those topics is required. 

Fortunately, too, the comparison is simple:

Blocking: operation are said to have blocking behavior if it waits for some event to get complete. For example: if a lock is not available a thread may enter a wait state on event till lock is available. Such an operation is said to be blocking.

Non-blocking: Non blocking behavior is like checking the condition at that instance. For example- in case of locks if it is not available it will not wait till it is available like blocking operation. Also we need to repeatedly check the availability of locks as there will be no callback like asynchronous calls.

As an example of the work done, I will use part of the section **Concurrency and Throughput** belonging to the [Blocking-Vs-Non-Blocking.md](https://crowdin.com/translate/nodejs/85/en-es#27356) module:

___

<div class="pull-left">

<center>**English:**</center>

### Concurrency and Throughput

<div class="text-justify">

JavaScript execution in Node.js is single threaded, so concurrency refers to the event loop's capacity to execute JavaScript callback functions after completing other work. Any code that is expected to run in a concurrent manner must allow the event loop to continue running as non-JavaScript operations, like I/O, are occurring.

As an example, let's consider a case where each request to a web server takes 50ms to complete and 45ms of that 50ms is database I/O that can be done asynchronously. Choosing non-blocking asynchronous operations frees up that 45ms per request to handle other requests. This is a significant difference in capacity just by choosing to use non-blocking methods instead of blocking methods.

The event loop is different than models in many other languages where additional threads may be created to handle concurrent work.

</div> </div>

<div class="pull-right">

<center>**Spanish:**</center>

### Concurrencia y Rendimiento

<div class="text-justify">

La ejecución de JavaScript en Node.js es de un solo hilo, por lo que la concurrencia se refiere a la capacidad del bucle de eventos para ejecutar las funciones de callback de JavaScript después de completar otro trabajo. Cualquier código que se espera que se ejecute de manera concurrente debe permitir que el bucle de eventos continúe ejecutándose a medida que se produzcan las operaciones que no son de JavaScript, como I/O.

Como ejemplo, consideremos un caso en el que cada solicitud a un servidor web tarda 50ms en completarse y 45ms de esos 50ms es el I/O de la base de datos que se puede realizar de forma asíncrona. La elección de operaciones asíncronas no bloqueantes libera esos 45ms por solicitud para manejar otras solicitudes. Esta es una diferencia significativa en la capacidad simplemente al elegir utilizar métodos de no bloqueo en lugar de métodos de bloqueo.

El bucle de eventos es diferente a los modelos en muchos otros idiomas en los cuales se pueden crear subprocesos adicionales para manejar el trabajo simultáneo.

</div></div>

_____

## Languages

This contribution was translated from English to Spanish.

## Word Count

The number of words reflected in the title doesn't include words that didn't require a translation.
- In this contribution, I've translated **1214** words.
- I've translated a total of **102825** words so far*

*Considering non-translatable content (proper names, functions, codes, etc.)

## To see my previous contributions in this project, check this!

<center>![Check.gif](https://files.steempeak.com/file/steempeak/cremisi/jZtqHkY8-Check.gif)</center> 

- [Zlib.md](https://crowdin.com/translate/nodejs/139/en-es#42849)

Part [74](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1206-words-part-74)

- [Util.md](https://crowdin.com/translate/nodejs/65/en-es)

Part [73](https://steemit.com/utopian-io/@cremisi/i7acq-node-js-translation-to-spanish-1692-words-part-73)

- [Domain.md](https://crowdin.com/translate/nodejs/39/en-es)

Part [72](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1621-words-part-72)

- [Domain-Module-Postmortem.md](https://crowdin.com/translate/nodejs/86/en-es)

Part [71](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1636-words-part-71)

- [Writing-tests.md](https://crowdin.com/translate/nodejs/81/en-es)

Part [70](https://steempeak.com/utopian-io/@cremisi/node-js-translation-to-spanish-1067-words-part-70)

- [N-api.md](https://crowdin.com/translate/nodejs/49/en-es).

From [Part 62](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1166-words-part-62) to [Part 69](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1521-words-part-69)

- [Timers-in-node.md](https://crowdin.com/translate/nodejs/80/en-es#26667)

Part [61](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1126-words-part-61)

- [Maintaining-V8.md](https://crowdin.com/translate/nodejs/78/en-es) (v6.x)

Parts [59](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1065-words-part-59) and [60](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1299-words-part-60)

- [Net.md](https://crowdin.com/translate/nodejs/50/en-es)

Parts [57](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1288-words-part-57) and [58](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1303-words-part-58)

- [Onboarding.md](https://crowdin.com/translate/nodejs/83/en-es)

Part [56](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1481-words-part-56)

- [Event-loop-timers-and-nexttick.md](https://crowdin.com/translate/nodejs/87/en-es)

Parts [54](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1040-words-part-54) and [55](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1135-words-part-55)

- [VM.md](https://crowdin.com/translate/nodejs/138/en-es)

Part [53](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1498-words-part-53)

- [Building-node-with-Ninja.md](https://crowdin.com/translate/nodejs/77/en-es)

Part [52](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1101-words-part-52)

- [ChangeLog_V7.md](https://crowdin.com/translate/nodejs/222/en-es)

From [ Part 41](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1200-words-part-41) to [Part 51](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1008-words-part-51)

- [ChangeLog_V8.md](https://crowdin.com/translate/nodejs/223/en-es)

From [Part 14](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1221-words-part-14) to [Part 40](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1479-words-part-40)

- [Using-Internal-Errors.md](https://crowdin.com/translate/nodejs/234/en-es) and [Building-Node-with-Ninja.md](https://crowdin.com/translate/nodejs/226/en-es)

Part [13](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1015-words-part-13)

- [Maintaining-V8.md](https://crowdin.com/translate/nodejs/230/en-es) (v10.x)

Parts [11](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1184-words-part-11) and [12](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1212-words-part-12).

- [Pull-requests-md](https://crowdin.com/translate/nodejs/229/en-es)

From [Part 7](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1046-words-part-7) to [Part 10](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1022-words-part-10)

- [TLS.md](https://crowdin.com/translate/nodejs/206/en-es)

From [Part 1](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1005-words-part-1) to [Part 6](https://steemit.com/utopian-io/@cremisi/node-js-translation-to-spanish-1035-words-part-6)

## Proof of Authorship

<center>![image.png](https://files.steempeak.com/file/steempeak/cremisi/HEdpGm9s-image.png)</center>

This counter includes non-translatable words, so it is necessary to work on more content to extract an average of 1000 translatable words.

You can check [My Crowdin Profile](https://crowdin.com/profile/cremisi) for verify my contribution in this project.c
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 33 others
👎  ,
properties (23)
post_id77,954,320
authorcremisi
permlinknode-js-translation-to-spanish-1214-words-part-75
categoryutopian-io
json_metadata{"app":"steempeak\/1.14.6","format":"markdown","tags":["utopian-io","translations","davinci","node-js"],"users":["cremisi"],"links":["https:\/\/github.com\/nodejs\/i18n","https:\/\/crowdin.com\/translate\/nodejs\/149\/en-es","https:\/\/crowdin.com\/translate\/nodejs\/85\/en-es#27356","https:\/\/crowdin.com\/translate\/nodejs\/85\/en-es#27356","https:\/\/crowdin.com\/translate\/nodejs\/139\/en-es#42849","\/utopian-io\/@cremisi\/node-js-translation-to-spanish-1206-words-part-74","https:\/\/crowdin.com\/translate\/nodejs\/65\/en-es","\/utopian-io\/@cremisi\/i7acq-node-js-translation-to-spanish-1692-words-part-73","https:\/\/crowdin.com\/translate\/nodejs\/39\/en-es","\/utopian-io\/@cremisi\/node-js-translation-to-spanish-1621-words-part-72"],"image":["https:\/\/cdn.steemitimages.com\/DQmbrioY3P2uEDwSfLZciQeL2GUMxPiujLjB3uWQbc4DNv4\/image.png","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/D8ZWcrSq-image.png","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/mLF1CTDq-image.png","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/1JRB1ogr-felix.gif","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/e8vpgtQc-image.png","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/jZtqHkY8-Check.gif","https:\/\/files.steempeak.com\/file\/steempeak\/cremisi\/HEdpGm9s-image.png"]}
created2019-07-15 04:43:06
last_update2019-07-15 04:43:06
depth0
children4
net_rshares34,848,066,420,590
last_payout2019-07-22 04:43:06
cashout_time1969-12-31 23:59:59
total_payout_value8.166 SBD
curator_payout_value2.961 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10,556
author_reputation44,897,506,523,231
root_title"Node.js Translation to Spanish - ( 1214 words) (Part-75)"
beneficiaries
0.
accountdavinci.pay
weight1,000
1.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (99)
@alejohannes ·
$10.37
Greetings, @cremisi. Thanks for submitting your contribution!

* The presentation and contents of your post are good and satisfy the requirements for a complete evaluation of your contribution.
* You did a precise use of the terminology and technical language involved in this translation.
* The translated content fits coherently the general meaning and use of the addressed strings.
* Thanks for adding an example of your translation job on the project.
* Great job explaining the contents of your work on this contribution and personalizing your post! [Fix-It Felix, Jr.](https://wreckitralph.fandom.com/wiki/Fix-It_Felix,_Jr._(game)) is proud of your job!

#### Congratulations on this collaboration!
#
Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/12/2-3-2-1-2-5-).

---- 
Chat with us on [Discord](https://discord.gg/vMGmDSm)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id77,987,815
authoralejohannes
permlinkpupp9z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["cremisi"],"links":["https:\/\/wreckitralph.fandom.com\/wiki\/Fix-It_Felix,_Jr._(game)","https:\/\/join.utopian.io\/guidelines","https:\/\/review.utopian.io\/result\/12\/2-3-2-1-2-5-","https:\/\/discord.gg\/vMGmDSm"],"app":"steemit\/0.1"}
created2019-07-16 01:26:18
last_update2019-07-16 01:26:18
depth1
children1
net_rshares28,478,291,183,233
last_payout2019-07-23 01:26:18
cashout_time1969-12-31 23:59:59
total_payout_value7.886 SBD
curator_payout_value2.487 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,093
author_reputation81,491,274,690,207
root_title"Node.js Translation to Spanish - ( 1214 words) (Part-75)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (28)
@utopian-io ·
Thank you for your review, @alejohannes! Keep up the good work!
properties (22)
post_id78,067,879
authorutopian-io
permlinkre-pupp9z-20190718t055602z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-07-18 05:56:06
last_update2019-07-18 05:56:06
depth2
children0
net_rshares0
last_payout2019-07-25 05:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation152,913,012,544,965
root_title"Node.js Translation to Spanish - ( 1214 words) (Part-75)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steem-ua ·
#### Hi @cremisi!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
post_id77,988,906
authorsteem-ua
permlinkre-node-js-translation-to-spanish-1214-words-part-75-20190716t021302z
categoryutopian-io
json_metadata{"app":"beem\/0.20.19"}
created2019-07-16 02:13:03
last_update2019-07-16 02:13:03
depth1
children0
net_rshares0
last_payout2019-07-23 02:13:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length286
author_reputation23,203,609,903,979
root_title"Node.js Translation to Spanish - ( 1214 words) (Part-75)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
Hey, @cremisi!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
post_id78,004,897
authorutopian-io
permlinkre-node-js-translation-to-spanish-1214-words-part-75-20190716t135301z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-07-16 13:53:03
last_update2019-07-16 13:53:03
depth1
children0
net_rshares0
last_payout2019-07-23 13:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length589
author_reputation152,913,012,544,965
root_title"Node.js Translation to Spanish - ( 1214 words) (Part-75)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000