Parse launches JavaScript SDK: Parse for Websites
11–20 of 112 posts
Re: Parse launches JavaScript SDK: Parse for Websites
#12I'm wondering if it would be possible to implement a disqus-style service.
Re: Parse launches JavaScript SDK: Parse for Websites
#13Man, this is awesome. You can now basically host a full web app completely through a CDN.
What would be really nice is if Parse had a way to somehow plug in existing backend infrastructure to Parse's data model.
Edit : I take it back. Parse has a REST API.
Re: Parse launches JavaScript SDK: Parse for Websites
#14They certainly free you from their service by allowing an export of your data. But what about all the code written to the API? If at some point in the future you decide you don't want or can't afford Parse - it's nearly a re-write. Unless you abstract their API in an intelligent way. Even then there is some work.
Re: Parse launches JavaScript SDK: Parse for Websites
#15Man, this is awesome. You can now basically host a full web app completely through a CDN.
I'm thinking that this would only work for relatively simple apps though. There might be cases where the functionalities in your apps could only be supported by server-side infrastructure, like uploading files, resizing images, emailing, cron jobs, etc. What would be really nice is if Parse had a way to somehow plug in existing backend infrastructure to Parse's data model. Edit : I take it back. Parse has a REST API.
Annnd you just said that. Didn't see your edit heh.
Re: Parse launches JavaScript SDK: Parse for Websites
#16Anyone know if it would be possible to implement generic javascript-based "apps" for any websites? I'm wondering if it would be possible to implement a disqus-style service.
Re: Parse launches JavaScript SDK: Parse for Websites
#17Anyone know if it would be possible to implement generic javascript-based "apps" for any websites? I'm wondering if it would be possible to implement a disqus-style service.
Yes, you can implement a Disqus-style service with Parse. The SDK uses cross-origin resource sharing to make requests to Parse, so you can host your app anywhere, including on third-party sites.
Re: Parse launches JavaScript SDK: Parse for Websites
#18But for any front-end (or any person, I guess) who wants to build something and quickly validate their idea and get traction this will be very useful.
My only suggestion is to architect your application knowing that you will migrate out of their infrastructure.