~/devreads

#rxjs

3 posts

19 Jul 2019

Daniel Schmidt 1 min read

I recently had to bootstrap a project with a GraphQL frontend and backend using Apollo. We wanted to show realtime updates of metrics we collect from an endpoint. For this, we wanted to use GraphQL Subscriptions, specifically graphql-subscriptions , but I noticed they use AsyncIterables as an abstraction for a stream of data. I used RxJS for the same purpose…

graphql-subscriptionsrxjstypescriptgraphqlnodejs

12 Jun 2018

Daniel Schmidt 4 min read

Lately at work, my colleagues build some awesome tooling to fetch data in an easy way. It’s built around RxJS, which I previously had very little knowledge about. I saw cool ways of getting and combining data, which inspired me to build a little game with RxJS in React Native. The game idea is to have a ball on a…

rxjsreactreact-nativereact-native-sensorsjavascript

14 May 2018

Daniel Schmidt 4 min read

One of the most exciting strengths of React Native is that it allows you to bridge native calls to Javascript. In contrast to other frameworks that pre-define what can be executed on the native side React Native is easily extensible. With great power comes great responsibility The React Native community is hard to compare with others, you have a lot…

rxjssensorsreactreact-native