create account

[React Native #2] 리액트 네이티브 날씨앱 만들기 by anpigon

View this thread on: hive.blogpeakd.comecency.com
· @anpigon · (edited)
$4.23
[React Native #2] 리액트 네이티브 날씨앱 만들기
![](https://files.steempeak.com/file/steempeak/anpigon/yEuqXKgU-weather-28719_640.png)

<br>

# 리액트 네이티브로 날씨앱 만들기

리액트 네이티브를 사용하여 날씨앱을 만드는 첫번째 강좌입니다. 간단하게 현재 위치(GPS좌표)를 읽어 날씨를 조회하여 보여줄 것입니다. 기능을 하나씩 천천히 구현하면서 진행하겠습니다.

<br>

---

**이전글**

* [[React Native #1] 리액트 네이티브 시작하기](https://steemit.com/kr/@anpigon/react-native-1--1542639852750)

---
<br>

# 리액트 네이티브 프로젝트 생성

```js
$ create-react-native-app weather_app
```

<br>*Choose a template*에서 **blank**를 선택한다.

![](https://files.steempeak.com/file/steempeak/anpigon/OWbQ5A2d-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212000.36.30.png)

아래와 같이 **weather_app** 프로젝트가 생성된다.

![](https://files.steempeak.com/file/steempeak/anpigon/OrErlAKb-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212000.37.12.png)

<br>

# 현재 위치 GPS 가져오기

`navigator.geolocation`에서 제공하는 `getCurrentPosition` 함수를 사용하면 현재 GPS 좌표를 가져올 수 있다.

```
navigator.geolocation.getCurrentPosition(function(position) {
	console.log(position);
});
```

<br>`App.js`에서 아래와 같이 `componentDidMount()` 함수를 구현한다.

```js
export default class App extends React.Component {

  // ... 생략 ...

  componentDidMount() {
    navigator.geolocation.getCurrentPosition(
      function(position) {
        console.log(position);
      }, 
      function(error) {
        console.log(error);
      }
    );
  }
}
```
> `componentDidMount` 함수는 리액트 컴포넌트 마운트가 되었을때 실행된다.
> [[React.Component의 lifecycle 문서]](https://reactjs.org/docs/react-component.html#the-component-lifecycle)를 참고.

<br><br>

# 앱 실행하기

```bash
$ npm start
```

<br>또는,

```bash
$ expo start
```

<br>앱을 실행하면 아래와 같이 브라우저에 `http://localhost:19002/` 페이지가 표시된다. 브라우저가 자동 실행되지 않은 경우에는 URL을 직접입력한다.

![](https://files.steempeak.com/file/steempeak/anpigon/nbbO1e4T-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212001.14.00.png)

디바이스에서 **Expo앱**을 실행하고 QR코드를 촬영한다. 그리고 앱에서 *위치정보 액세스 권한*을 물어보는 경우 **확인**을 누른다.

![](https://steemitimages.com/300x0/https://files.steempeak.com/file/steempeak/anpigon/Zc2kyQba-Screenshot_20181121-010232_Package20installer.jpg)

그러면 콘솔창에 현재 GSP좌표 데이터가 `Object` 형태로 출력된다.

```js
Object {
  "coords": Object {
    "accuracy": 15.47599983215332,
    "altitude": 54.5,
    "heading": 0,
    "latitude": 37.5354432,
    "longitude": 127.0542137,
    "speed": 0,
  },
  "mocked": false,
  "timestamp": 1542729762017,
}
```

<br>참고로 브라우저 콘솔창에서도 확인 가능하다.
![](https://files.steempeak.com/file/steempeak/anpigon/iYad1VVX-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212001.03.11.png)

다음번 강좌에서는 위치정보(GPS)로 날씨를 조회하는 기능을 구현할 것입니다.

<br>

---

<br>

날씨 앱을 안드로이드 자바로 구현할 때는 개발환경 세팅이나 필요한 모듈을 다운로드하는데 시간이 많이 걸렸습니다. 그런데 리액트 네이티브는 개발환경 세팅이나 모듈 설치하는데 많은 시간이 필요하지 않아서 좋네요. 그리고 저는 리액트 네이티브가 자바스크립트로 구현해서 그런지 코딩이 금방 손에 익었습니다.ㅋ 구글의 플러터도 자바스크립트를 사용했으면 더 좋았을 텐데 하는 아쉬움이 남았습니다.


여기까지 읽어주셔서 감사합니다.




---

#####  <sub> **Sponsored ( Powered by [dclick](https://www.dclick.io) )** </sub>
##### [My Actifit Report Card: 11월 18 2018](https://api.dclick.io/v1/c?x=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjIjoiYW5waWdvbiIsInMiOiJyZWFjdC1uYXRpdmUtMi0tMTU0MjczMjEwMzg2MSIsImEiOlsidC04ODUiXSwidXJsIjoiaHR0cHM6Ly9zdGVlbWl0LmNvbS9hY3RpZml0L0BzZWxmdm90ZWp1c3RpY2UvYWN0aWZpdC1zZWxmdm90ZWp1c3RpY2UtMjAxODExMTh0MTAxMzIzNjUxeiIsImlhdCI6MTU0MjczMjEwMywiZXhwIjoxODU4MDkyMTAzfQ.tlnfvApXOuUCbqqDdTpR5KuVxCxItkf_hewxrZNJ8as)
<sup>Many sets of tennis doubles game. Enough is enough. ...</sup>
</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoranpigon
permlinkreact-native-2--1542732103861
categorykr
json_metadata{"tags":["kr","kr-dev","jjangjjangman","dclick","busy"],"app":"steemit/0.1","format":"markdown","community":"busy","image":["https://files.steempeak.com/file/steempeak/anpigon/yEuqXKgU-weather-28719_640.png","https://files.steempeak.com/file/steempeak/anpigon/OWbQ5A2d-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212000.36.30.png","https://files.steempeak.com/file/steempeak/anpigon/OrErlAKb-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212000.37.12.png","https://files.steempeak.com/file/steempeak/anpigon/nbbO1e4T-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212001.14.00.png","https://steemitimages.com/300x0/https://files.steempeak.com/file/steempeak/anpigon/Zc2kyQba-Screenshot_20181121-010232_Package20installer.jpg","https://files.steempeak.com/file/steempeak/anpigon/iYad1VVX-E18489E185B3E1848FE185B3E18485E185B5E186ABE18489E185A3E186BA202018-11-212001.03.11.png"],"links":["https://steemit.com/kr/@anpigon/react-native-1--1542639852750","https://reactjs.org/docs/react-component.html#the-component-lifecycle","https://www.dclick.io","https://api.dclick.io/v1/c?x=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjIjoiYW5waWdvbiIsInMiOiJyZWFjdC1uYXRpdmUtMi0tMTU0MjczMjEwMzg2MSIsImEiOlsidC04ODUiXSwidXJsIjoiaHR0cHM6Ly9zdGVlbWl0LmNvbS9hY3RpZml0L0BzZWxmdm90ZWp1c3RpY2UvYWN0aWZpdC1zZWxmdm90ZWp1c3RpY2UtMjAxODExMTh0MTAxMzIzNjUxeiIsImlhdCI6MTU0MjczMjEwMywiZXhwIjoxODU4MDkyMTAzfQ.tlnfvApXOuUCbqqDdTpR5KuVxCxItkf_hewxrZNJ8as"]}
created2018-11-20 16:41:45
last_update2018-11-20 17:24:42
depth0
children19
last_payout2018-11-27 16:41:45
cashout_time1969-12-31 23:59:59
total_payout_value3.217 HBD
curator_payout_value1.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,431
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,626,173
net_rshares6,819,890,180,891
author_curate_reward""
vote details (39)
@bukio ·
짱짱맨 호출에 응답하여 보팅하였습니다. 꾸준한 활동을 북이오(@bukio)가 응원합니다.
properties (22)
authorbukio
permlinkre-bukio-jjangjjangman-1542786240014
categorykr
json_metadata"{"tags":["bukio", "jjangjjangman"],"app":"steemer/1.0"}"
created2018-11-21 07:44:00
last_update2018-11-21 07:44:00
depth1
children0
last_payout2018-11-28 07:44:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation11,545,563,591,097
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,661,245
net_rshares0
@codingman ·
간단하게 만드어지 지는군요.
지금은 못하지만 주말에 시간 나면 도전 해 봐야 겠네요.
properties (22)
authorcodingman
permlinkre-anpigon-react-native-2--1542732103861-20181120t182612944z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-20 18:26:15
last_update2018-11-20 18:26:15
depth1
children1
last_payout2018-11-27 18:26:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation23,188,231,710,844
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,631,195
net_rshares0
@anpigon ·
간단한 앱은 자바스크립트로 간단하게 구현이 가능합니다. 복잡한 앱도 구현이 가능할꺼 같지만 퍼포넌스가 나올지 잘모르겠어요.ㅋ
properties (22)
authoranpigon
permlinkre-codingman-re-anpigon-react-native-2--1542732103861-20181120t234153582z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-20 23:41:54
last_update2018-11-20 23:41:54
depth2
children0
last_payout2018-11-27 23:41:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,644,518
net_rshares0
@dalkong323 ·
제 눈에는 꼬부랑 꼬부랑 텍스트지만ㅎㅎ 디클릭 꾸욱! (날씨 이미지가 귀엽네요, 소근소근)
properties (22)
authordalkong323
permlinkre-anpigon-react-native-2--1542732103861-20181121t071431775z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-21 07:14:33
last_update2018-11-21 07:14:33
depth1
children1
last_payout2018-11-28 07:14:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation61,655,788,006
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,660,245
net_rshares0
@anpigon ·
꼬부랑 꼬부랑 텍스트로 꼬오부랑 앱을 만드는 개발자입니다.ㅎㅎ(날씨 이미지를 귀엽다고해서 감사하므니다, 소근소근)
properties (22)
authoranpigon
permlinkre-dalkong323-re-anpigon-react-native-2--1542732103861-20181122t034654565z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-22 03:46:54
last_update2018-11-22 03:46:54
depth2
children0
last_payout2018-11-29 03:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,709,835
net_rshares0
@eversloth ·
리액트 공부를 좀 해봐야겠군요 ㅎㅎ
properties (22)
authoreversloth
permlinkre-anpigon-react-native-2--1542732103861-20181121t053130184z
categorykr
json_metadata{"tags":["kr"],"community":"steempeak","app":"steempeak"}
created2018-11-21 05:31:33
last_update2018-11-21 05:31:33
depth1
children1
last_payout2018-11-28 05:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation13,382,690,107,205
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,656,833
net_rshares0
@anpigon ·
다른 언어 공부다하다가도 다시 리액트로 오게 되네요.ㅎㅎ
properties (22)
authoranpigon
permlinkre-eversloth-re-anpigon-react-native-2--1542732103861-20181123t041643139z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-11-23 04:16:45
last_update2018-11-23 04:16:45
depth2
children0
last_payout2018-11-30 04:16:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,766,734
net_rshares0
@gomdory ·
![](https://ipfs.busy.org/ipfs/QmSpSf3UTPCZUwCEfi1sWKKcUXWKH3SnpEaYaqRuWu7omz)
@anpigon님 보팅 감사합니다. 곰돌이가 1.4배로 돌려드리고 가요~ 영차~

[[곰돌이 명성도 55기념 이벤트] 너의 보팅을 두배로 돌려줄께~ / 스팀잇에 빛을 비춰줘~ lightsteem alpha](https://steemit.com/gomdory/@blockchainstudio/55-lightsteem-alpha)
properties (22)
authorgomdory
permlinkre-react-native-2--1542732103861-20181121t004100
categorykr
json_metadata""
created2018-11-21 00:41:00
last_update2018-11-21 00:41:00
depth1
children1
last_payout2018-11-28 00:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length261
author_reputation38,104,394,235,725
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,646,914
net_rshares0
@anpigon ·
감사합니다. 곰도뤼~!
properties (22)
authoranpigon
permlinkre-gomdory-re-react-native-2--1542732103861-20181121t004100-20181121t004823795z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-11-21 00:48:24
last_update2018-11-21 00:48:24
depth2
children0
last_payout2018-11-28 00:48:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,647,166
net_rshares0
@hjk96 · (edited)
저한테는 외계어이지만 이런 기술을 가지신 분들 참으로 멋지세요 ^-^
properties (22)
authorhjk96
permlinkre-anpigon-react-native-2--1542732103861-20181121t005424775z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-11-21 00:54:24
last_update2018-11-21 00:54:33
depth1
children1
last_payout2018-11-28 00:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation215,294,071,096,398
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,647,337
net_rshares0
@anpigon ·
외계어지만 구현한 결과물을 보면 뿌듯합니다. 
칭찬 감사합니다.ㅋ
properties (22)
authoranpigon
permlinkre-hjk96-re-anpigon-react-native-2--1542732103861-20181121t011440712z
categorykr
json_metadata{"tags":["kr"],"community":"steempeak","app":"steempeak"}
created2018-11-21 01:14:39
last_update2018-11-21 01:14:39
depth2
children0
last_payout2018-11-28 01:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,648,014
net_rshares0
@jisoooh0202 ·
리액트 네이티브와 플러터ㅜㅜ
자바스크립트와 다트 라는 언어 사용하는거죠?
분명 코딩에 있어서는 자바스크립트가 더 많이 쓰이는 것 같은데...
플러터가 더 쉽다고 하는 것 같고...ㅜㅜ
properties (22)
authorjisoooh0202
permlinkre-anpigon-react-native-2--1542732103861-20181120t172707480z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-20 17:27:09
last_update2018-11-20 17:27:09
depth1
children3
last_payout2018-11-27 17:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation4,755,820,563,511
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,628,471
net_rshares0
@anpigon ·
추가로 알려드리면 개발 언어가 다르지만, 리액트를 배우면 웹앱(React.js)과 모바일앱(React Native) 둘다 구현 가능합니다.
플러터가 공식 문서가 더 잘되어있고 강좌도 제공하고 있어서 배우기 쉽습니다. 구글에서 제공하는 문서들은 정말 친절합니다. 그런데 영알못인 전 문서 읽다가 일단 학습을 중단했습니다. 중단한 이유에는 다트라는 언어도 한 몫했네요.ㅋ

리액트는 무료 동영상 강의도 많고, 한글 번역 문서도 많아서 영어로 배울 필요가 없어서 좋습니다. 그런데 저는 신기술 매니아라서 리액트 네이티브도 어디까지 학습할지는 알수없습니다.ㅋㅋ
properties (22)
authoranpigon
permlinkre-jisoooh0202-re-anpigon-react-native-2--1542732103861-20181121t000421131z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-21 00:04:21
last_update2018-11-21 00:04:21
depth2
children2
last_payout2018-11-28 00:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation17,258,940,000,931
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,645,494
net_rshares0
@jisoooh0202 ·
그 말씀은 플러터는 웹앱은 못만든다는 말씀이시네요?
흠..... 좋은 정보 감사합니다!!! :)
properties (22)
authorjisoooh0202
permlinkre-anpigon-re-jisoooh0202-re-anpigon-react-native-2--1542732103861-20181121t100331335z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-11-21 10:03:33
last_update2018-11-21 10:03:33
depth3
children1
last_payout2018-11-28 10:03:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation4,755,820,563,511
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,666,286
net_rshares0
@steem-ua ·
#### Hi @anpigon!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 2.617 which ranks you at **#14628** across all Steem accounts.
Your rank has improved 171 places in the last three days (old rank 14799).

In our last Algorithmic Curation Round, consisting of 276 contributions, your post is ranked at **#205**.
##### Evaluation of your UA score:

* Only a few people are following you, try to convince more people with good work.
* You have already convinced some users to vote for your post, keep trying!
* Try to improve on your user engagement! The more interesting interaction in the comments of your post, the better!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-react-native-2--1542732103861-20181121t002603z
categorykr
json_metadata"{"app": "beem/0.20.9"}"
created2018-11-21 00:26:06
last_update2018-11-21 00:26:06
depth1
children0
last_payout2018-11-28 00:26:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length800
author_reputation23,214,230,978,060
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,646,415
net_rshares0
@steem.apps ·
$0.04
![](https://steemitimages.com/32x32/https://steemitimages.com/u/newbijohn/avatar) [newbijohn](/@newbijohn)님이 anpigon님을 멘션하셨습니당. 아래 링크를 누르시면 연결되용~ ^^ <br />[newbijohn](/@newbijohn)님의 [[씽스팀 콘테스트] 나는 코노 가수다. 마지막 회!! <하고 싶은거 다 해!> 1등 우승자 100스팀 몰빵을 시작합니다.](/kr/@newbijohn/-1-100--1542757203014) <br /> 

 <blockquote>...
항상 후원해주시고 응원해주신 여러분 매우매우 감사합니다~~~+_+
2탄 참가자들의 씽스팀 보러 가즈아우리 anpigon개발 이사님이 만들어주셨어염~ &gt;.&lt;
_후원사(한 번 후원사는 영원한 후원사!!)https://s...</blockquote>
👍  
properties (23)
authorsteem.apps
permlinkre---------react-native-2--1542732103861-20181121t000753910z
categorykr
json_metadata{"app":"steem.apps/0.1","format":"markdown"}
created2018-11-21 00:07:54
last_update2018-11-21 00:07:54
depth1
children0
last_payout2018-11-28 00:07:54
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length460
author_reputation7,218,006,883,278
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,645,644
net_rshares82,047,598,455
author_curate_reward""
vote details (1)
@steem.apps ·
![](https://steemitimages.com/32x32/https://steemitimages.com/u/gomdory/avatar) [gomdory](/@gomdory)님이 anpigon님을 멘션하셨습니당. 아래 링크를 누르시면 연결되용~ ^^ <br />[gomdory](/@gomdory)님의 [곰돌이 100일 됐어요!!!](/gomdory/@gomdory/100) <br /> 

 <blockquote>...71WgoizVh8Q1QmeqfTUSRy8fGRQ7QYFMQZm1
kiwifi님이 만들어주신 특별 배너
와 anpigon이 안 알려주셨으면 지나칠뻔ㅠㅠ 집사 blockchainstudio 이 녀석 뭐하는거야ㅋㅋ
사실 활동일 9월...</blockquote>
properties (22)
authorsteem.apps
permlinkre---------react-native-2--1542732103861-20181121t002455112z
categorykr
json_metadata{"app":"steem.apps/0.1","format":"markdown"}
created2018-11-21 00:24:57
last_update2018-11-21 00:24:57
depth1
children0
last_payout2018-11-28 00:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length383
author_reputation7,218,006,883,278
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,646,360
net_rshares0
@steemitboard ·
Congratulations @anpigon! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@anpigon/commented.png?201811220401</td><td>You got more than 1750 replies. Your next target is to reach 2000 replies.</td></tr>
</table>

<sub>_[Click here to view your Board of Honor](https://steemitboard.com/@anpigon)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table>

> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-anpigon-20181122t053547000z
categorykr
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-11-22 05:35:45
last_update2018-11-22 05:35:45
depth1
children0
last_payout2018-11-29 05:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,156
author_reputation38,975,615,169,260
root_title"[React Native #2] 리액트 네이티브 날씨앱 만들기"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,713,387
net_rshares0