installing io.js is now really easy thanks to the io.js and nvm team. They provides prebuilt binaries for arm.
io.js require packages that are not available on the standard (Wheezy) need to change to Jessie. Update your package url
import React, { Component } from 'react'; | |
import styled from 'styled-components'; | |
const Figure = styled.figure` | |
height: 0; | |
margin: 0; | |
background-color: #efefef; | |
position: relative; | |
padding-bottom: ${props => props.ratio}%; | |
`; |
import React from 'react'; | |
import MapBox from './Map.jsx'; | |
var Component = React.createClass({ | |
getInitialState: function() { | |
return { | |
data: { | |
x: 0, | |
y: 0 | |
} |
show(status, slotId, carStatusTypeInfo) { | |
var typeIdForCar = ''; | |
if (typeof status === 'undefined') { | |
var types = ['ACTIVE', 'DISABLED', /* ... */]; | |
typeIdForCar = types.reduce(function(value, type){ | |
return value || this.getTypeIdForCar(carStatusTypeInfo, type); | |
}, ''); | |
} else { | |
typeIdForCar = this.getTypeIdForCar(carStatusTypeInfo, status) | |
} |
import React from 'react' | |
import { IndexRoute, Route } from 'react-router' | |
import RootComponent from './containers/RootComponent' | |
import BaseLayout from './components/BaseLayout' | |
import AuthenticatedLayout from './components/AuthenticatedLayout' | |
import Auth from './containers/Auth' | |
import Dashboard from './containers/Dashboard' | |
import Inbox from './containers/Inbox' | |
import Schedule from './containers/Schedule' | |
import NotFound from './components/NotFound' |
import React from 'react' | |
import { IndexRoute, Route } from 'react-router' | |
import RootComponent from './containers/RootComponent' | |
import BaseLayout from './components/BaseLayout' | |
import AuthenticatedLayout from './components/AuthenticatedLayout' | |
import Auth from './containers/Auth' | |
import Dashboard from './containers/Dashboard' | |
import Inbox from './containers/Inbox' | |
import Schedule from './containers/Schedule' |
/* | |
A widget that will appear when the screen reaches a certain size. Allows opening and closing of a sidebar. | |
100% pure, vanilla JavaScript and CSS. | |
*/ | |
(function(){ | |
var Badge = function(target, placement) { | |
var self = this; | |
this.target = target; | |
this.placement = placement; | |
var breadOne = {}; | |
breadOne.name = "White"; | |
breadOne.type = "Flour"; | |
//why make vars inside the constructor Bread if I can add more here like this? | |
breadOne.whatever = "another option"; | |
import React from 'react/addons'; | |
import ReactMixin from 'react-mixin'; | |
import ReactScriptLoaderMixin from 'react-script-loader'; | |
export default class LoginForm extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
user: '', | |
password: '', |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.rawgit.com/zloirock/core-js/master/client/shim.js"></script> | |
<!-- uncomment for React master | |
<script src="http://react.zpao.com/builds/master/latest/react.js"></script> | |
--> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/4.7.0/codemirror.min.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/4.7.0/theme/solarized.min.css"> |