Skip to content

Instantly share code, notes, and snippets.

@raghuprathap
raghuprathap / introrx.md
Created July 6, 2018 02:14 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@raghuprathap
raghuprathap / Books.js
Created May 14, 2018 11:48
Cannot read property kind of undefined
import React, {Component, Fragment} from 'react';
import {Query, Mutation, Subscription} from 'react-apollo';
import gql from 'graphql-tag';
import PropTypes from 'prop-types';
import ApolloClient from 'apollo-client';
import {SubscriptionClient} from 'subscriptions-transport-ws';
const GRAPHQL_ENDPOINT = 'ws://localhost:4000/subscriptions';
export default class Books extends Component {
@raghuprathap
raghuprathap / debugging-js-setup.md
Created April 9, 2018 16:03 — forked from 1Marc/debugging-js-setup.md
Debugging JavaScript LIVE -- Setup Instructions
  • Make sure you have a GitHub account
  • Install:
    • Git
    • Text editor (Atom or VSCode suggested)
    • Node installed and available via command line node. Recommended version 4.6 or greater.
    • Chrome web browser (latest stable release)
  • Clone the getRANTR repo and follow the install instructions.