Git Product home page Git Product logo

Comments (7)

skellock avatar skellock commented on May 18, 2024

Are you using npm 2 by any chance?

from apisauce.

zurodtl avatar zurodtl commented on May 18, 2024

I have same issue, it worked fine on react-native 0.39.0 but got error on react-native 0.40.0

from apisauce.

 avatar commented on May 18, 2024

It isn't related to version of RN. Try to install "apisauce": "0.7.0".

from apisauce.

skellock avatar skellock commented on May 18, 2024

I wonder if this is related? axios/axios#648

from apisauce.

skellock avatar skellock commented on May 18, 2024

No issue here with Android on Mac:

  • Android 6 api 23
  • React Native 40
  • Apisauce 0.8
  • Axios 15.3

It must be a Windows thing? I'll poke around some more.

Source if you're interested.

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react'
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native'
import {create} from 'apisauce'

// define the api
const api = create({
  baseURL: 'https://api.github.com',
  headers: {'Accept': 'application/vnd.github.v3+json'}
})

export default class ApisauceTest extends Component {

  callApi () {
    // start making calls
    api
      .get('/repos/skellock/apisauce/commits')
      .then((response) => response.data[0].commit)
      .then(console.log)
  }

  render () {
    const callApi = this.callApi.bind(this)
    return (
      <View style={styles.container}>
        <Text style={styles.welcome} onPress={callApi}>
          Welcome to React Native!
        </Text>
      </View>
    )
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF'
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5
  }
})

AppRegistry.registerComponent('ApisauceTest', () => ApisauceTest)

from apisauce.

skellock avatar skellock commented on May 18, 2024

So @GantMan and I tracked it down to:

https://github.com/mzabriskie/axios/blob/master/lib/defaults.js#L23

Comment that line on out on Windows and the packager will finish it's transform process.

More details when we ask some people at Facebook about how the packager works.

from apisauce.

GantMan avatar GantMan commented on May 18, 2024

facebook/react-native#11498 (comment)

from apisauce.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.