This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"response": { | |
"version": "0.1", | |
"termsofService": "http://www.wunderground.com/weather/api/d/terms.html", | |
"features": { | |
"hourly": 1 | |
} | |
}, | |
"hourly_forecast": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"q": "chicken", | |
"from": 0, | |
"to": 3, | |
"params": { | |
"sane": [ ], | |
"to": [ | |
"3" | |
], | |
"q": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Text, View, TextInput, StyleSheet, TouchableHighlight } from 'react-native'; | |
export default class App extends Component { | |
render() { | |
return ( | |
<View> | |
<View style={styles.wrapper}> | |
<TextInput | |
underlineColorAndroid={'transparent'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const app = express(); | |
... | |
app.set('trust proxy', true); | |
if (process.env.ENVIRONMENT == 'development') { | |
app.use(logger('dev')); | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. copy above files to your local folder | |
2. run `npm install` | |
3. run `npm -g gulp` | |
4. run `gulp sass` | |
5. run `gulp browser-sync` |
NewerOlder