{"id":13447404,"url":"https://github.com/bluzi/jsonstore","last_synced_at":"2025-09-28T23:32:22.915Z","repository":{"id":86010350,"uuid":"127338417","full_name":"bluzi/jsonstore","owner":"bluzi","description":":rocket: jsonstore offers a free and secured JSON-based cloud datastore for small projects | Inactive","archived":true,"fork":false,"pushed_at":"2020-05-01T05:17:00.000Z","size":328,"stargazers_count":2027,"open_issues_count":29,"forks_count":74,"subscribers_count":27,"default_branch":"master","last_synced_at":"2025-01-10T06:57:02.972Z","etag":null,"topics":["cloud","database","free","jsonstore"],"latest_commit_sha":null,"homepage":"https://www.jsonstore.io/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bluzi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-03-29T19:31:07.000Z","updated_at":"2024-12-31T12:27:30.000Z","dependencies_parsed_at":"2023-03-04T21:30:21.872Z","dependency_job_id":null,"html_url":"https://github.com/bluzi/jsonstore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluzi%2Fjsonstore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluzi%2Fjsonstore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluzi%2Fjsonstore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluzi%2Fjsonstore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluzi","download_url":"https://codeload.github.com/bluzi/jsonstore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234575214,"owners_count":18854924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloud","database","free","jsonstore"],"created_at":"2024-07-31T05:01:16.674Z","updated_at":"2025-09-28T23:32:17.532Z","avatar_url":"https://github.com/bluzi.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\r\n\u003cimg src=\"https://i.imgur.com/a4K03fL.png\" height=\"75\" /\u003e\r\n\u003cimg src=\"https://i.imgur.com/qjXkfUY.png\" height=\"75\" /\u003e\r\n\u003cimg src=\"https://i.imgur.com/S1Llv8Q.png\" height=\"75\" /\u003e\r\n\u003cimg src=\"https://i.imgur.com/9r1x8Cx.png\" height=\"75\" /\u003e\r\n\u003c/p\u003e\r\n\u003cp align=\"center\"\u003e\r\n\u003ca href=\"https://www.jsonstore.io/\"\u003e\r\n  \u003cimg src=\"logo.png\" /\u003e\r\n\u003ca /\u003e\r\n\u003c/p\u003e\r\n\u003cp align=\"center\"\u003e\r\nStart storing your data in the cloud in 2 seconds\r\n\u003c/p\u003e\r\n\r\n## jsonstore.io\r\njsonstore.io offers a free, secured and JSON based cloud datastore for small projects.\r\nJust enter https://www.jsonstore.io/, copy the URL and start sending HTTP requests to communicate with your datastore.\r\nPOST requests will save data, PUT requests modify data, DELETE requests delete data and GET requests retrieves data.\r\n\r\n## Examples\r\nMake sure to replace the URL in the examples to your own endpoint, that can be found at https://www.jsonstore.io/.\r\n### CURL\r\n#### POST\r\nThe following command will create a user in `/users/1`:\r\n```shell\r\ncurl -XPOST -H \"Content-type: application/json\" -d '{\r\n  \"name\": \"jon.snow\",\r\n  \"age\": 31\r\n}' 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1'\r\n```\r\n\r\n#### GET\r\nThe following command will retrieve the user we created earlier:\r\n```shell\r\ncurl -XGET 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1'\r\n```\r\n\r\n##### Querying and Sorting\r\nTo query the data, use the query parameters `orderKey`, `filterValue` and `valueType`\r\n\r\n- `orderKey`: name of the key in child. For example, to order by `age` use,\r\n```shell\r\ncurl -XGET 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users?orderKey=age'\r\n```\r\n\r\n\u003e if `orderKey` in not present in child, that child will come in order before children with `orderKey`\r\n\r\n- `filterValue`: value of key (given using `orderKey`), to filter the children by. For example, to get the users with `age`=`20`\r\n```shell\r\ncurl -XGET 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users?orderKey=age\u0026filterValue=20'\r\n```\r\n\u003e `filterValue` should be used in conjugation with `orderBy`.\r\n\r\n- `valueType`: enforcing type of `filterValue`. Type of `filterValue` is guessed by `jsonstore`. If you want to enforce a type, send `string`, `number` or `boolean` as `valueType`. For eg,\r\n```shell\r\ncurl -XGET 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users?orderKey=age\u0026filterValue=20\u0026valueType=number'\r\n```\r\n\r\n#### PUT\r\nThe following command will change the age of the user to `32`:\r\n```shell\r\ncurl -XPUT -H \"Content-type: application/json\" -d '32' 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1/age'\r\n```\r\n\r\n#### DELETE\r\nThe following command will delete the user:\r\n```shell\r\ncurl -XDELETE 'https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1'\r\n```\r\n\r\n### JavaScript\r\n#### POST\r\n```js\r\nfetch('https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1', {\r\n  headers: {\r\n    'Content-type': 'application/json'\r\n  },\r\n  method: 'POST',\r\n  body: { name: 'jon snow', age: 31 },\r\n});\r\n```\r\n\r\n#### GET\r\n```js\r\nconst user = await fetch('https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1')\r\n  .then(function(response) {\r\n    return response.json();\r\n  })\r\n```\r\n\r\n#### PUT\r\n```js\r\nfetch('https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1/age', {\r\n  headers: {\r\n    'Content-type': 'application/json'\r\n  },\r\n  method: 'PUT',\r\n  body: 32,\r\n});\r\n```\r\n\r\n#### DELETE\r\n```js\r\nfetch('https://www.jsonstore.io/cf024bb815a93131ce9fed91b1f9dafa43a3c557e9be66e66fd76df5c64f10fe/users/1', {\r\n  method: 'DELETE',\r\n});\r\n```\r\n\r\n### Contribution\r\nAny type of feedback, pull request or issue is welcome.\r\n","funding_links":[],"categories":["JavaScript","*.js","📦 Legacy \u0026 Inactive Projects","工具"],"sub_categories":["Node","调试"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluzi%2Fjsonstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluzi%2Fjsonstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluzi%2Fjsonstore/lists"}