Skip to content

Commit

Permalink
Update markdown files of hello_react
Browse files Browse the repository at this point in the history
  • Loading branch information
kohei-takata committed Jan 17, 2016
1 parent 41256b8 commit a0bd197
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion exercises/hello_react/problem.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ First, create the directory where you will write your code. It needs to contain
for npm to know in which folder to install the subsequent packages - `npm init` does this for us.
You can change `learnyoureact` to any name you like.

`$ mkdir learnyoureact; cd learnyoureact; npm init -y;
`$ mkdir learnyoureact; cd learnyoureact; npm init -y;`

Start by installing the required modules. Run this command:

Expand Down
11 changes: 5 additions & 6 deletions exercises/hello_react/problem.ko.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
먼저 `Hello World`를 출력해 봅시다!

다음 명령을 실행해 코드를 넣을 디렉터리를 만듭니다.

```
$ mkdir learnyoureact
```

전에 준비로 이번 작업 폴더 를 만들고 그 안에 이동 합시다.
그 폴더 에 [package.json](https://docs.npmjs.com/getting-started/using-a-package.json) 을 작성 합시다.
package.json 하여 npm 은 어느 폴더에 패키지 를 설치 하거나 판단 합니다.
`learnyoureact`를 좋아하는 이름으로 바꾸셔도 됩니다.

`$ mkdir learnyoureact; cd learnyoureact; npm init -y;`

필요한 모듈을 설치하려면 밑의 명령을 실행해 보세요.

`$ npm install react react-dom express body-parser [email protected] [email protected]`
Expand Down
2 changes: 1 addition & 1 deletion exercises/hello_react/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package.jsonによって、npmはどのフォルダにパッケージをインストールするか判断します。
`learnyoureact` をお好きなフォルダ名に変更してください。

`$ mkdir learnyoureact`
`$ mkdir learnyoureact; cd learnyoureact; npm init -y;`

それができたら、そのフォルダの中にモジュールをインストールしましょう。
以下のコマンドを実行してください。
Expand Down

0 comments on commit a0bd197

Please sign in to comment.