3

I found that when using the parse-node package, you can no longer use Parse.Cloud.httpRequest. I also know that Parse's Image object won't be available.

So far, I've been able to replace some Parse promises with native ones and use axios to make network requests.

However, I'm relatively new to Node, so I'm curious as to what are the most direct replacements for these, and how do I use them?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
fatuhoku
  • 4,815
  • 3
  • 30
  • 70

1 Answers1

1

You should still be able to use Parse.Cloud.httpRequest. But axios is a great library and it's a great idea to start using it if you want to learn nodejs. When it comes to the parse-image it has to be replaced. There is a library which claims 100% compatibilty, check it out here.

Simon Bengtsson
  • 7,573
  • 3
  • 58
  • 87