From 6d845f85ccf13f92b9ce28d3076e4e77f7056ebc Mon Sep 17 00:00:00 2001 From: JinYoung Jang Date: Wed, 5 Dec 2018 14:41:04 +0900 Subject: [PATCH] Add Korean translation (#1918) * Docs: Correct spelling and Update documents * edit content * add translation * getting-started-guide korean translation * modify colon * edit spacing * translate title * modify translation * modify translation --- .../ko/docs/guides/getting-started-guide.md | 34 +++++++++++++++++++ locale/ko/docs/guides/index.md | 1 + 2 files changed, 35 insertions(+) create mode 100644 locale/ko/docs/guides/getting-started-guide.md diff --git a/locale/ko/docs/guides/getting-started-guide.md b/locale/ko/docs/guides/getting-started-guide.md new file mode 100644 index 0000000000000..60995d6a9c579 --- /dev/null +++ b/locale/ko/docs/guides/getting-started-guide.md @@ -0,0 +1,34 @@ +--- +title: 시작 가이드 +layout: docs.hbs +--- + + + +# Node.js를 설치한 후 어떻게 시작할 수 있을까요? + +Node를 설치했으면 우리의 첫 번째 웹 사이트를 구축해 봅시다. +"app.js"라는 이름의 파일을 만든 후 아래의 코드를 붙여넣으세요. + +```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}/`); +}); +``` + + +그런 다음 ``` node app.js ```를 사용하여 웹 사이트를 실행한 후 을 방문하면 'Hello World'라는 메시지를 볼 수 있을 것입니다. \ No newline at end of file diff --git a/locale/ko/docs/guides/index.md b/locale/ko/docs/guides/index.md index 9f99bc5e6cf69..f1873defe5aa5 100644 --- a/locale/ko/docs/guides/index.md +++ b/locale/ko/docs/guides/index.md @@ -7,6 +7,7 @@ layout: docs.hbs ## General +- [시작 가이드](getting-started-guide/) - [디버깅 - 시작하기](debugging-getting-started/) - [Node.js 애플리케이션의 간단한 프로파일링](simple-profiling/) - [Node.js 웹 앱의 도커라이징](nodejs-docker-webapp/)