create account

[Translation][Spanish] Node.js (1052 words) (Part 48) by samuellmiller

View this thread on: hive.blogpeakd.comecency.com
· @samuellmiller ·
$24.76
[Translation][Spanish] Node.js (1052 words) (Part 48)
![node.png](https://cdn.steemitimages.com/DQmQPWKpofUTSNs5ZZCw7m6etqsLShgShoNAJ6peVvxhgTy/node.png)
#### Repository
https://github.com/nodejs/i18n

#### Project Details
Node.js, by definition, is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside the browser. This means that now it is possible to execute a program written in JS outside a web browser such as Google Chrome, Safari, etc. This creates an extension to what the language can do, besides just creating interactive websites. With the help of the V8 JavaScript runtime engine, it can now take the code and convert it into a faster machine code, e. g., Node.js eliminates the waiting and continues to take care of the next task.

From my personal perspective, Node.js represents an advantage for the coders to write code, since it still has all the capabilities and functionalities JavaScript offers, but now in a more extended way. Also, thanks to all the time I have been contributing with this project, I have realized the huge amount of time and effort that the Node.js team has taken in order to make it as good as it is and also to improve it with every single upgrade.

You can take a look at their Crowdin project [here](https://crowdin.com/project/nodejs).

#### Contribution Specifications

- Translation Overview

This is the 48th translation I made for the Node.js project, and on this contribution I continued translating the PULL-REQUESTS.MD folder. Such folder I define it as follows:

-- PULL-REQUESTS.MD: This folder's intention is to show the collaborators how to exactly create a pull request. It shows all the steps one has to follow in order to do so and also the steps taken for that request to be either accepted or denied. The whole tutorial is made out of 10 steps, and after that it advises how to properly review every single detail of the PR.

On this contribution there were not found any complex terms that needed further information in order to be translated properly. However, I found a term that I had not knowledge of and I would like to share it with you.

The term is **Lint**. It refers to a process or a tool that analyzes sorce code by running a program to flag programming errors, bugs, stylistic errors and suspicious constructs. It is also known as *linter*, and the term was the name originally given to a particular software that could flag some suspicious and non-portable constructs (mostly bugs) in C language source code. Currently the term is applied generically to any tool, program or software that can do so in software written in any computer language.

Now, why is it important or what makes the linter useful? Well, it does not only help you to detect errors (or things that may look like), but it also helps you to avoid them.

A linter will help you catch bugs in a few scenarios. Let's take a look at some examples:
![Screen Shot 20190220 at 3.02.07 PM.png](https://files.steempeak.com/file/steempeak/samuellmiller/KAkKc3sZ-Screen20Shot202019-02-2020at203.02.0720PM.png)

With the JavaScript Style Guide, a set of rules based on the eslint, the linter would throw us two errors. The first one is that runnable is never used, and the second one on line #3 is using an undeclared variable. Obviously there is just one error, the type error on line #3, but the linter would tell you both.

Detecting these errors while we write the code and not when we execute the app will save a lot of time,  that could be a huge amount of time if the app is running in production. We could literally spend hours debugging in the worst case, but with a linter we get immediate feedback.

There are plenty of ways to use a linter. Let's look at some of them:

-- Using a plugin in your text editor: to get immediate feedback, just add a linter plugin to your text editor.

-- Create an NPM script: add your linter as a dev dependency in your package.json.

-- Git hook: use lint-staged with husky or pre-commit, or just have a small script that is invoked on a standard git pre-commit.


Examples of strings translated:

**1.** EN: Approval and Request Changes Workflow

SP: Flujo de Trabajo de Aprobación y Solicitud de Cambios

**2.** EN: If you happen to make a mistake in any of your commits, do not worry.

SP: Si comete un error en cualquiera de sus commits, no se preocupe.

**3.** EN: GitHub will automatically update the Pull Request.

SP: GitHub actualizará automáticamente la Pull Request.

**References:**

-- Daily JS. *Why you should always use a Linter?* (https://medium.com/dailyjs/why-you-should-always-use-a-linter-and-or-pretty-formatter-bb5471115a76)

-- Wikipedia. *Lint* (https://en.wikipedia.org/wiki/Lint_(software))

-- Stack Overflow. *Lint* (https://stackoverflow.com/questions/8503559/what-is-linting)


- Languages

I translated from English to Spanish.

I have translated over 100,000 words utilizing the Crowdin platform and this has given me experience to always grant great quality translations.

- Word Count

I have translated **1,052 words**. This contribution has been made between the dates Feb/16/2019 and Feb/19/2019, when I realized the translation, and Feb/20/2019, when I realized the corrections.

**Previous translations on this project:**
- [Part 1](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1323-words-part-1)
- [Part 2](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1079-words-part-2)
- [Part 3](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1049-words-part-3)
- [Part 4](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1021-words-part-4)
- [Part 5](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1033-words-part-5)
- [Part 6](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1032-words-part-6)
- [Part 7](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1034-words-part-7)
- [Part 8](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1027-words-part-8)
- [Part 9](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1024-words-part-9)
- [Part 10](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1025-words-part-10)
- [Part 11](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1016-words-part-11)
- [Part 12](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1013-words-part-12)
- [Part 13](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1015-words-part-13)
- [Part 14](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1023-words-part-14)
- [Part 15](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1018-words-part-15)
- [Part 16](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1023-words-part-16)
- [Part 17](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1010-words-part-17)
- [Part 18](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1020-words-part-18)
- [Part 19](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1015-words-part-18)
- [Part 20](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1028-words-part-20)
- [Part 21](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1022-words-part-21)
- [Part 22](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1023-words-part-22)
- [Part 23](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1036words-part-3)
- [Part 24](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1016-words-part-24)
- [Part 25](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1020-words-part-25)
- [Part 26](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1027-words-part-26)
- [Part 27](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1034-words-part-27)
- [Part 28](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1020-words-part-28)
- [Part 29](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-29)
- [Part 30](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-30)
- [Part 31](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1149-words-part-31)
- [Part 32](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-32)
- [Part 33](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1041-words-part-33)
- [Part 34](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1149-words-part-34)
- [Part 35](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-35)
- [Part 36](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1119-words-part-36)
- [Part 37](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1112-words-part-36)
- [Part 38](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-38)
- [Part 39](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1105-words-part-39)
- [Part 40](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1103-words-part-40)
- [Part 41](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1107-words-part-41)
- [Part 42](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1143-words-part-42)
- [Part 43](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1103-words-part-43)
- [Part 44](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1053-words-part-44)
- [Part 45](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1052-words-part-45)
- [Part 46](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1061-words-part-46)
- [Part 47](https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1088-words-part-47)

### Proof of Authorship
[My Crowdin profile](https://crowdin.com/profile/SamuelLMiller)
![Qma5ZvDxgbK8cpmMkPenWW8sXpc7UDNsT2hNBiGQHtRNwh.png](https://cdn.steemitimages.com/DQmNrR8PecFmXFCCC9jGKYAcAB4D4ByWgNt2KYKZx1Tqt1g/Qma5ZvDxgbK8cpmMkPenWW8sXpc7UDNsT2hNBiGQHtRNwh.png)

### Word Count
![Screen Shot 20190220 at 3.16.03 PM.png](https://files.steempeak.com/file/steempeak/samuellmiller/uDju45ds-Screen20Shot202019-02-2020at203.16.0320PM.png)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 90 others
properties (23)
authorsamuellmiller
permlinktranslation-spanish-node-js-1052-words-part-48
categoryutopian-io
json_metadata{"community":"steempeak","app":"steempeak/1.7.2b","format":"markdown","tags":["utopian-io","translations","nodejs","davinci"],"users":["samuellmiller"],"links":["https://github.com/nodejs/i18n","https://crowdin.com/project/nodejs","https://medium.com/dailyjs/why-you-should-always-use-a-linter-and-or-pretty-formatter-bb5471115a76","https://en.wikipedia.org/wiki/Lint_","https://stackoverflow.com/questions/8503559/what-is-linting","https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1323-words-part-1","https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1079-words-part-2","https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1049-words-part-3","https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1021-words-part-4","https://steemit.com/utopian-io/@samuellmiller/translation-spanish-node-js-1033-words-part-5"],"image":["https://cdn.steemitimages.com/DQmQPWKpofUTSNs5ZZCw7m6etqsLShgShoNAJ6peVvxhgTy/node.png","https://files.steempeak.com/file/steempeak/samuellmiller/KAkKc3sZ-Screen20Shot202019-02-2020at203.02.0720PM.png","https://cdn.steemitimages.com/DQmNrR8PecFmXFCCC9jGKYAcAB4D4ByWgNt2KYKZx1Tqt1g/Qma5ZvDxgbK8cpmMkPenWW8sXpc7UDNsT2hNBiGQHtRNwh.png","https://files.steempeak.com/file/steempeak/samuellmiller/uDju45ds-Screen20Shot202019-02-2020at203.16.0320PM.png"]}
created2019-02-20 19:18:48
last_update2019-02-20 19:18:48
depth0
children5
last_payout2019-02-27 19:18:48
cashout_time1969-12-31 23:59:59
total_payout_value18.164 HBD
curator_payout_value6.593 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,641
author_reputation39,528,925,146,935
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries
0.
accountdavinci.pay
weight1,000
1.
accountutopian.pay
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,159,158
net_rshares53,730,766,692,202
author_curate_reward""
vote details (154)
@alejohannes ·
$13.29
Greetings, @samuellmiller. Thanks for submitting your contribution!

* The presentation and contents of your post are fulfill the requirements for a complete evaluation of your contribution.
* The translated content fits coherently the general meaning and use of the enlisted strings.
* You an important concept you learnt while you were doing this translation.
* Your writing style and the use you did of the terminology involved in this translation were precise and adequate.
* You also added examples of your translation job on the addressed folder... Great!

#### Congratulations on this contribution!
#
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-1-2-2-6-).

---- 
Chat with us on [Discord](https://discord.gg/vMGmDSm)
👍  , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoralejohannes
permlinkre-samuellmiller-translation-spanish-node-js-1052-words-part-48-20190222t000216263z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["samuellmiller"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/12/2-3-1-2-2-6-","https://discord.gg/vMGmDSm"],"app":"steemit/0.1"}
created2019-02-21 23:34:15
last_update2019-02-21 23:34:15
depth1
children1
last_payout2019-02-28 23:34:15
cashout_time1969-12-31 23:59:59
total_payout_value10.066 HBD
curator_payout_value3.221 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length994
author_reputation81,484,992,319,751
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,214,803
net_rshares24,739,399,350,377
author_curate_reward""
vote details (23)
@utopian-io ·
Thank you for your review, @alejohannes! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-samuellmiller-translation-spanish-node-js-1052-words-part-48-20190222t000216263z-20190224t180553z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-24 18:05:54
last_update2019-02-24 18:05:54
depth2
children0
last_payout2019-03-03 18:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation152,955,367,999,756
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,337,254
net_rshares0
@steem-ua ·
#### Hi @samuellmiller!

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)
authorsteem-ua
permlinkre-translation-spanish-node-js-1052-words-part-48-20190221t234448z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-02-21 23:44:51
last_update2019-02-21 23:44:51
depth1
children0
last_payout2019-02-28 23:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation23,214,230,978,060
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,215,049
net_rshares0
@steemitboard ·
Congratulations @samuellmiller! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@samuellmiller/voted.png?201902202042</td><td>You received more than 5000 upvotes. Your next target is to reach 6000 upvotes.</td></tr>
</table>

<sub>_[Click here to view your Board](https://steemitboard.com/@samuellmiller)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-samuellmiller-20190220t213717000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-02-20 21:37:15
last_update2019-02-20 21:37:15
depth1
children0
last_payout2019-02-27 21:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length766
author_reputation38,975,615,169,260
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,163,278
net_rshares0
@utopian-io ·
Hey, @samuellmiller!

**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)
authorutopian-io
permlinkre-translation-spanish-node-js-1052-words-part-48-20190226t152018z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-02-26 15:20:21
last_update2019-02-26 15:20:21
depth1
children0
last_payout2019-03-05 15:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length595
author_reputation152,955,367,999,756
root_title"[Translation][Spanish] Node.js (1052 words) (Part 48)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,445,563
net_rshares0