Jsonbox – A HTTP based JSON storage
31–37 of 37 posts
Reminds me of Angular (the online JSON storage service that created, and gave it's name to, Angular.js)
Re: Jsonbox – A HTTP based JSON storage
#32It works for all Node.js versions ? I don't see the requirements. It seems great for developpement stuff.
There isn't a client side API. It's an HTTP GET for read, which returns an application/json response, and a POST of the same to create, other http ops for delete (DELETE), update (PUT).
I assume you would use https.request() in node or some abstraction that sits on top of that.
Re: Jsonbox – A HTTP based JSON storage
#33How is this superior to ?
It does have some json aware functionality, like sort, skip, and limit. Also, two levels of identifiers, where some web storage services only have one.
Re: Jsonbox – A HTTP based JSON storage
#34Making this free is brilliant.
(1) maybe OP has AWS or GCP credits (very easy to get from these companies’ startup ambassadors)
(2) If there’s ever a greedy actor taking up resources, it seems like they would be relying on the system to the point where they are willing to pay for it.
This is exactly the right way to start a business... Do one thing well in a way that doesn’t scale — this gives you the opportunity to learn from customers and build better offerings.
Why do you think AWS and GCP give out free credits to begin with?
Re: Jsonbox – A HTTP based JSON storage
#35Maybe I have not read the doc carefully enough. But what if you PUT/POST to another existing box_id? Or can other people read from your box if they guess the box_id?
Re: Jsonbox – A HTTP based JSON storage
#36Is the idea to fill the gap between s3 and Mongo (and having to host Mongo)?
Re: Jsonbox – A HTTP based JSON storage
#37There is a simple Python wrapper if you want to use it from your python project
https://pypi.org/project/jsonbox/