Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Korean translation #1918

Merged
merged 10 commits into from
Dec 5, 2018
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions locale/ko/docs/guides/getting-started-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: Getting Started Guide
expitly marked this conversation as resolved.
Show resolved Hide resolved
layout: docs.hbs
---

<!-- # How do I start with Node.js after I installed it?

Once you have installed Node, let's try building our first web server.
Create a file named "app.js", and paste the following code: -->

# Node.js를 설치 한 후, 어떻게 시작 할 수 있을까요?
expitly marked this conversation as resolved.
Show resolved Hide resolved

Node를 설치했으면, 우리의 첫 번째 웹 사이트를 구축해 봅시다.
"app.js" 라는 이름의 파일을 만든 후, 아래의 코드를 붙여넣으세요.
expitly marked this conversation as resolved.
Show resolved Hide resolved

```javascript
const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});

server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
```

<!-- After that, run your web server using ``` node app.js ```, visit http://localhost:3000, and you will see a message 'Hello World' -->
그런 다음, ``` node app.js ```를 사용하여 웹 사이트를 실행한 후, http://localhost:3000 을 방문하면, 당신은 'Hello World' 라는 메시지를 볼 수 있을 것입니다.
expitly marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions locale/ko/docs/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ layout: docs.hbs

## General

- [시작 가이드](getting-started-guide/)
- [디버깅 - 시작하기](debugging-getting-started/)
- [Node.js 애플리케이션의 간단한 프로파일링](simple-profiling/)
- [Node.js 웹 앱의 도커라이징](nodejs-docker-webapp/)
Expand Down