JulianKingman

Results 102 comments of JulianKingman

@repjackson I ended up using the cheerio library. I installed meteorhacks:npm, added the cheerio library, and used the following: ``` javascript var $ = cheerio.load(Meteor.http.get(url).content, {}); var parsed = $('body...

So does pnpm not work with nvm? What about other node version managers? Seems like a big problem. Anyone able to work around it?

Forgive me, I don't quite know what I'm looking at here. How do I set `BABEL_ENV` as `production`? I see in the `test.js` file something like this: `process.env['BABEL_ENV'] = 'production';`...

OK, pretend you're talking to a cat, there's a lot here that's new to me. I want to set the environment to production to use the production server URL, so...

To be clear, I'm not too concerned with the bundle, I just want to be able to run it with the flags in the simulator (`react-native run-ios`).

This is kind of crazy, I've rarely see so many duplicate issues... Duplicate issues with potential solutions https://github.com/wkh237/react-native-fetch-blob/issues/627 https://github.com/wkh237/react-native-fetch-blob/issues/251 (for me this comment helped, if using cocoapods, "be sure to...

With a detached Expo project, you have to first run `react-native link`, then (in the `/ios` directory) run `pod install`. You may also have to fix headers, for which I...