Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Translate "Node v10.10.0 (Current)" #757

Merged
merged 1 commit into from
Sep 30, 2018

Conversation

outsideris
Copy link
Contributor

close #754

### 주요 변경사항

* **child_process**:
* `execFileSync`와 `spawnSync`이 이제 `TypedArray`와 `DataView` 값을
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

`spawnSync`이 → `spawnSync`가


* **child_process**:
* `execFileSync`와 `spawnSync`이 이제 `TypedArray`와 `DataView` 값을
입력을 받을 수 있습니다. [#22409](https://github.com/nodejs/node/pull/22409)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

값을 입력을 받을 수 → 값을 입력받을 수

* `execFileSync`와 `spawnSync`이 이제 `TypedArray`와 `DataView` 값을
입력을 받을 수 있습니다. [#22409](https://github.com/nodejs/node/pull/22409)
* **coverage**:
* `NODE_V8_COVERAGE` 환경변수를 디렉토리로 설정해서 네이티브 V8 코드 커버리지 정보를 디스크에 출력할 수 있습니다. [#22527](https://github.com/nodejs/node/pull/22527)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

디렉토리 → 디렉터리

[6.4.1](https://github.com/npm/cli/releases/tag/v6.4.1)
* **fs**:
* `fs.read`, `fs.readSync`, `fs.write`, `fs.writeSync`,
`fs.writeFile`, `fs.writeFileSync` 메서드가 이제 모두 `TypedArray`와
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

`fs.writeFileSync` 앞의 공백이 중복되었습니다.

`DataView` 객체를 받습니다. [#22150](https://github.com/nodejs/node/pull/22150)
* `fs.readdir`와 `fs.readdirSync`에 새로운 불리언 옵션 `withFileTypes`를 전달할 수 있습니다.
true로 설정하면 메서드는 디렉터리 배열을 반환합니다. 각 요소의 타입을 결정하고 `fs.stat`를
호출하지 않고도 필터링할 수 있는 객체입니다. [#22020](https://github.com/nodejs/node/pull/22020)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'이 배열을 통해 `fs.stat`을 호출하지 않고도 각 요소의 타입을 판별하고, 이를 기반으로 필터링할 수 있습니다.'는 어떻습니까?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR을 보면 반환한 배열 안에 DirectoryEntry라는 객체가 있고 이 부분은 이 객체를 얘기하는 걸로 보여서 이 배열에 있는 객체를 통해 fs.stat을 호출하지 않고도 각 요소의 타입을 판별하고 필터링할 수 있습니다.로 수정했습니다.

true로 설정하면 메서드는 디렉터리 배열을 반환합니다. 각 요소의 타입을 결정하고 `fs.stat`를
호출하지 않고도 필터링할 수 있는 객체입니다. [#22020](https://github.com/nodejs/node/pull/22020)
* **http2**:
* `http2`이 더는 실험이 아닙니다. [#22466](https://github.com/nodejs/node/pull/22466)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'`http2`가 더 이상 실험 단계가 아닙니다.'는 어떻습니까?

* **http2**:
* `http2`이 더는 실험이 아닙니다. [#22466](https://github.com/nodejs/node/pull/22466)
* **os**:
* 프로세스의 우선순위 스케쥴링을 조작할 수 있는 `os.getPriority`와 `os.setPriority` 메서드를
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

프로세스의 우선순위 스케쥴링을 → 프로세스의 스케줄링 우선순위를

환경 변수에서 허용된 플래그를 프로그램으로 유효성을 검증하고 목록으로 출력하는데 사용할 수 있습니다.
[#19335](https://github.com/nodejs/node/pull/19335)
* **src**:
* 퍼블릭 C++ API의 옵션 환경 변수가 폐기 예정이 되었습니다. [#22515](https://github.com/nodejs/node/pull/22515)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

옵션 환경 변수가 → 옵션 변수가

* 퍼블릭 C++ API의 옵션 환경 변수가 폐기 예정이 되었습니다. [#22515](https://github.com/nodejs/node/pull/22515)
* 옵션 파싱을 리팩토링했습니다. [#22392](https://github.com/nodejs/node/pull/22392)
* **vm**:
* `vm.compileFunction`를 추가했습니다. 이 메서드는 다른 `vm` 메서드와 비슷한 옵션으로 소스
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

`vm.compileFunction`를 → `vm.compileFunction`을

@outsideris outsideris force-pushed the 2018-09-06-release-v10.10.0 branch from 2476219 to 6fb8803 Compare September 29, 2018 13:01
@outsideris
Copy link
Contributor Author

수정했습니다.

@yous yous merged commit 5de8a83 into nodejs:master Sep 30, 2018
@yous yous removed the in review label Sep 30, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Node v10.10.0 (Current)
3 participants