전체 238

[GraphQL / Apollo] 도입해보기

https://coding-dahee.tistory.com/111 아폴로 습득 후 직접 해보기! 목적: redux, context 대체. 1. isLoggedIn 이라는 변수 만들고 cache에서 가져와보기 client/src/apollo/Apollo.js import {resolvers, typeDefs} from './resolvers'; import {ApolloClient} from 'apollo-client'; import {HttpLink} from 'apollo-link-http'; import {InMemoryCache} from 'apollo-cache-inmemory'; const cache = new InMemoryCache(); const link = new HttpLink({ ur..

Development/GraphQL 2020.03.02

[Roubit]

https://github.com/wmcmahan/react-native-calendar-events wmcmahan/react-native-calendar-events 📆 React Native Module for iOS and Android Calendar Events - wmcmahan/react-native-calendar-events github.com react-native link react-native-calendar-events 했음 https://github.com/wmcmahan/react-native-calendar-events/wiki/iOS-setup info.plist 추가하니 권한 요청할 때 크래시 사라짐. 그냥.... 알람은.... 커스텀이었던거다. yarn add reac..

카테고리 없음 2020.02.25

[React Native] react-navigation ***v5*** 사용법

[참고링크] https://yuddomack.tistory.com/entry/React-Navigation%EC%9C%BC%EB%A1%9C-%EB%A1%9C%EA%B7%B8%EC%9D%B8-%ED%83%AD-%EB%84%A4%EB%B9%84%EA%B2%8C%EC%9D%B4%ED%84%B0-%ED%99%94%EB%A9%B4-%EA%B5%AC%EC%84%B1%ED%95%98%EA%B8%B0 React Navigation으로 로그인, 탭 네비게이터 화면 구성하기 이전에 react-native-navigation 사용법을 포스팅 한 적이 있는데, react-navigation이 react-native-navigation보다 설치도 간편하고, 사용하기 편리하고, 무엇보다 성능이 좋아져서 최근에 자주 사용하고 있습..

재균과스터디

[2.16 일] gql-yoga apollo-server 둘다 gql server를 띄울 수 있음 yarn add apollo bebel ecma https://node.green/ Node.js ES2015/ES6, ES2016 and ES2017 support node.green babel polyfill stream: 파일스트림. 한번거치면 다시 못가는거,, res => { console.log(res.json()) // res.json()가 stream이라서 한번읽어서 이미 안되느너,,,? return res.json() } res 자체를 찍는건 괜찮은데 그걸 읽는 동작에서 뭔가 그게 1번만 되는거야. 그래서 .json() 두번하면 안되는거 RDS: db 메인서버 가 여러개로 나뉘면 중간서버 역할..

카테고리 없음 2020.02.16

[GraphQL / Apollo] 오프라인 노트앱 만들기

https://www.youtube.com/watch?v=A4Grb-bm0Ok&list=PL7jH19IHhOLMTVBzUkbN74h1nyXW7VhYV [Stack] - GraphQL - Apollo - ReactJS - StyledComponent https://github.com/daheeahn/nomad-notes daheeahn/nomad-notes Offline-First Markdown Note Taking App bulit with Apollo오프라인 노트앱 만들기 - daheeahn/nomad-notes github.com GraphQL, Apollo로 local state 관리, 오프라인으로 !! No 리덕스 No Context Api !!!!! 니꼴피셜: 리덕스 버림. Apollo, GQ..

Development/GraphQL 2020.02.16

[React / RN] Context API (Anti Redux!) with Hooks

https://academy.nomadcoders.co/courses/enrolled/324423 불러오는 중입니다... React Context API: React 16.3 이후 생김 - context api를 hooks와 사용하기 위해 참고한 링크 https://dev.to/nazmifeeroz/using-usecontext-and-usestate-hooks-as-a-store-mnm Using useContext and useState hooks as a store For small to medium Apps, we don't necessarily need to use Redux! dev.to https://velog.io/@i_thank/React-Context-API React Context A..

출처: https://mingos-habitat.tistory.com/34 [밍고의서식지:티스토리]