-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Add Korean translation #1918
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
Merged
+35
−0
Merged
Add Korean translation #1918
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
29abffc
Docs: Correct spelling and Update documents
expitly a4994dc
edit content
expitly eb8fbca
add translation
expitly 9f7c9de
Merge remote-tracking branch 'upstream/master'
expitly b000956
getting-started-guide korean translation
expitly b8e3cca
modify colon
expitly 389e27b
edit spacing
expitly efc90fe
translate title
expitly b4281d1
modify translation
expitly 036bbf7
modify translation
expitly File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| --- | ||
| title: 시작 가이드 | ||
| 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를 설치 한 후, 어떻게 시작할 수 있을까요? | ||
|
|
||
| Node를 설치했으면, 우리의 첫 번째 웹 사이트를 구축해 봅시다. | ||
| "app.js"라는 이름의 파일을 만든 후, 아래의 코드를 붙여넣으세요. | ||
expitly marked this conversation as resolved.
Outdated
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.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.