An introduction to curl using GitHub's API
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
<head> | |
<title>ie9bug_test</title> | |
</head> | |
<body> | |
{{> hello}} | |
</body> | |
<template name="hello"> | |
<h1>IE9 bug</h1> |
my gist |
/* Install in a meteor project: | |
* $ meteor npm install --save-dev eslint eslint-plugin-react eslint-plugin-meteor eslint-config-airbnb | |
* | |
* See http://guide.meteor.com/code-style.html | |
* | |
* ES Lint rules: | |
* http://eslint.org/docs/rules/ <- Optionally append the rulename | |
*/ | |
{ |
// Creating Meteor HOCs | |
import { Meteor } from 'meteor/meteor'; | |
import { createContainer } from 'meteor/react-meteor-data'; | |
import React from 'react'; | |
import { compose } from 'recompose'; | |
// Assuming we have a Meteor collection here... | |
import TodosCollection from '../api/TodosCollection'; |