Skip to content

Commit fd086f7

Browse files
committed
apply reviews to Korean docs
1 parent 9557751 commit fd086f7

File tree

8 files changed

+295
-101
lines changed

8 files changed

+295
-101
lines changed

locale/ko/docs/es6.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: ECMAScript 2015(ES6)와 그 다음
33
layout: docs.hbs
44
---
5+
56
<!--
67
# ECMAScript 2015 (ES6) and beyond
78
@@ -13,6 +14,7 @@ All ECMAScript 2015 (ES6) features are split into three groups for **shipping**,
1314
* **Staged** features, which are almost-completed features that are not considered stable by the V8 team, require a runtime flag: `--harmony`.
1415
* **In progress** features can be activated individually by their respective harmony flag, although this is highly discouraged unless for testing purposes. Note: these flags are exposed by V8 and will potentially change without any deprecation notice.
1516
-->
17+
1618
# ECMAScript 2015(ES6)와 그 다음
1719

1820
Node.js는 [V8](https://developers.google.com/v8/)의 최신 버전으로 만들었습니다.
@@ -28,18 +30,19 @@ V8을 최신 릴리스로 유지하기 때문에 Node.js 개발자에게
2830
* **Staged** 기능은 거의 완성되었지만, V8 팀이 안정적이라고 간주하지 않은 기능으로
2931
`--harmony` 런타임 플래그가 필요합니다.
3032
* **In progress** 기능은 각 하모니 플래그로 개별적으로 활성화할 수 있습니다. 테스트 목적이
31-
아니라면 활성화하지 않기를 강력하게 권장한다. Note: 이 플래그는 V8에서 제공한 것으로
33+
아니라면 활성화하지 않기를 강력하게 권장합니다. 주의: 이 플래그는 V8에서 제공한 것으로
3234
폐기 공지 없이 변경될 수 있습니다.
3335

3436
<!--
3537
## Which features ship with which Node.js version by default?
3638
3739
The website [node.green](http://node.green) provides an excellent overview over supported ECMAScript features in various versions of Node.js, based on kangax's compat-table.
3840
-->
41+
3942
## Node.js 버전에 어떤 기능이 기본적으로 포함되나요?
4043

41-
[node.green](http://node.green) 웹사이트에서 Node.js의 다양한 버전에서 지원하는
42-
ECMAScript 기능을 쉽게 파악할 수 있습니다. 이는 kangax의 호환성 표를 기반으로 만들어졌습니다.
44+
[node.green](http://node.green) 웹사이트에서 어떤 Node.js가 어떤 ECMAScript 기능을
45+
지원하는지 파악할 수 있습니다. 이는 kangax의 호환성 표를 기반으로 만들어졌습니다.
4346

4447
<!--
4548
## Which features are in progress?
@@ -52,14 +55,15 @@ You may list all the *in progress* features available on each Node.js release by
5255
node --v8-options | grep "in progress"
5356
```
5457
-->
58+
5559
## 어떤 기능이 진행 중입니까?
5660

57-
V8 엔진에 계속해서 새로운 기능이 들어가고 있습니다. 대략 말하자면 시기는 알 수 없어도
58-
미래의 Node.js 릴리스에는 이 기능들이 들어온다고 할 수 있습니다.
61+
V8 엔진에 계속해서 새로운 기능이 추가되고 있습니다. 정확한 시기는 알 수 없겠지만
62+
앞으로 릴리스 할 Node.js에는 V8에 추가된 새 기능이 대체로 포함될 것입니다.
5963

6064
`--v8-options` 인자로 각 Node.js 릴리스에서 모든 *in progress* 기능의 리스트를 볼 수
6165
있습니다. 이 기능들은 완성되지 않았고 V8에서 제대로 돌아가지 않을 수도 있으므로 이 기능을 사용할 때는
62-
위험을 고려해야 함을 명심하세요.
66+
위험을 감수해야 함을 명심하세요.
6367

6468
```bash
6569
node --v8-options | grep "in progress"
@@ -70,11 +74,12 @@ node --v8-options | grep "in progress"
7074
7175
The current behaviour of the `--harmony` flag on Node.js is to enable **staged** features only. After all, it is now a synonym of `--es_staging`. As mentioned above, these are completed features that have not been considered stable yet. If you want to play safe, especially on production environments, consider removing this runtime flag until it ships by default on V8 and, consequently, on Node.js. If you keep this enabled, you should be prepared for further Node.js upgrades to break your code if V8 changes their semantics to more closely follow the standard.
7276
-->
77+
7378
## --harmony 플래그를 사용하는 환경이 있습니다. 이를 제거해야 하나요?
7479

7580
Node.js에서 `--harmony` 플래그의 현재 동작은 **staged** 기능만 활성화하는 것입니다. 결국,
76-
이는 `--es_staging` 같은 의미입니다. 앞에서 말했듯이 이 기능은 완성되었지만, 아직 안정적이라고
77-
간주하지 않은 것입니다. 프로덕션 환경 등에서 안전하게 운영하고 싶다면 V8과 Node.js에서 기본적으로
81+
이는 `--es_staging` 같은 의미입니다. 앞에서 말했듯이 이 기능은 완성되었지만, 아직 안정적이라고
82+
볼 수는 없습니다. 프로덕션 환경 등에서 안전하게 운영하고 싶다면 V8과 Node.js에서 기본적으로
7883
제공할 때까지 이 런타임 플래그를 제거하는 것을 고려해 보세요. 이 기능을 활성화한다면 차후 Node.js를
7984
업그레이드 할 때 V8이 이 기능의 의미를 표준에 더 가깝게 변경한 경우 코드가 깨질 수 있으므로
8085
대비해야 합니다.
@@ -88,6 +93,7 @@ Node.js provides a simple way to list all dependencies and respective versions t
8893
node -p process.versions.v8
8994
```
9095
-->
96+
9197
## Node.js의 특정 버전에 포함된 V8의 버전을 어떻게 알 수 있나요?
9298

9399
Node.js에서는 `process` 전역 객체를 통해 특정 바이너리에 포함된 모든 의존성과 각 버전의 목록을

locale/ko/docs/faq.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Everyone can help. Node.js adheres to a [code of conduct](https://github.com/nod
1111
1212
To get started, there are open [discussions on GitHub](https://github.com/nodejs/node/issues), and we'd love to hear your feedback. Becoming involved in discussions is a good way to get a feel of where you can help out further. If there is something there you feel you can tackle, please [make a pull request](https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#code-contributions).
1313
-->
14+
1415
# FAQ
1516

1617
## 어떻게 기여하나요?
@@ -20,16 +21,17 @@ To get started, there are open [discussions on GitHub](https://github.com/nodejs
2021
지키고 [오픈 거버넌스](https://github.com/nodejs/node/blob/master/GOVERNANCE.md#readme)
2122
모델 하에 기여, 릴리스, 기여자를 운영합니다.
2223

23-
[GitHub에 공개적으로 논의](https://github.com/nodejs/node/issues)를 하고 있고 우리는
24-
피드백을 듣기 원합니다. 논의에 참여하는 것은 무엇을 도울 수 있는지 찾는 좋은 방법입니다. 기여할 수 있는
25-
부분은 찾았다면
24+
우선은 [GitHub에서 공개적으로 이뤄지는 논의](https://github.com/nodejs/node/issues)
25+
참여해보는 것도 좋습니다. 우리는 여러분의 피드백을 듣고 싶습니다. 논의에 참여하는 것은 무엇을
26+
도울 수 있는지 찾는 좋은 방법입니다. 기여할 수 있는 부분은 찾았다면
2627
[풀 리퀘스트를 올려주세요](https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#code-contributions).
2728

2829
<!--
2930
## Where do discussions take place?
3031
3132
There is an #node.js channel on Freenode IRC. We keep logs of the channel [here](http://logs.libuv.org/node.js/latest).
3233
-->
34+
3335
## 논의는 어디서 이뤄지나요?
3436

3537
Freenode IRC에 #node.js 채널이 있습니다. 채널의 대화 로그를
@@ -40,6 +42,7 @@ Freenode IRC에 #node.js 채널이 있습니다. 채널의 대화 로그를
4042
4143
Open source governance advocates the application of the philosophies of the open source and open content movements in order to enable any interested party to add to the creation of the end product, as with a wiki document. Legislation is democratically opened to the general citizenry, employing their collective wisdom to benefit the decision-making process and improve democracy. [[source]](https://en.wikipedia.org/wiki/Open-source_governance)
4244
-->
45+
4346
## 오픈 소스 거버넌스가 무엇인가요?
4447

4548
오픈 소스 거버넌스는 위키 문서처럼 관심 있는 사람이라면 누구나 최종 제품에 창작물을 추가할 수 있도록

0 commit comments

Comments
 (0)