{"id":19112230,"url":"https://github.com/21dimensions/js-client","last_synced_at":"2026-04-27T00:31:44.218Z","repository":{"id":144102141,"uuid":"149083238","full_name":"21dimensions/js-client","owner":"21dimensions","description":"Client for EasyEasy.io cloud database","archived":false,"fork":false,"pushed_at":"2018-10-23T13:32:06.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-02T13:11:31.198Z","etag":null,"topics":["cloud","database","databases","easyeasy","orm","orm-framework","storage"],"latest_commit_sha":null,"homepage":"http://easyeasy.io/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/21dimensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-17T07:05:52.000Z","updated_at":"2018-10-23T13:32:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"d0bd6978-0939-4913-8160-1a3e22e93d4b","html_url":"https://github.com/21dimensions/js-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/21dimensions/js-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fjs-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fjs-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fjs-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fjs-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/21dimensions","download_url":"https://codeload.github.com/21dimensions/js-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/21dimensions%2Fjs-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32318417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","databases","easyeasy","orm","orm-framework","storage"],"created_at":"2024-11-09T04:32:14.971Z","updated_at":"2026-04-27T00:31:44.203Z","avatar_url":"https://github.com/21dimensions.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# easyeasy-client\n\n## How to use\n\n### Install\n```\nnpm install easyeasy-client\n```\n\n### Initialize\n\n```js\nvar client = require('easyeasy-client')({\n    key:\"YOUR_APP_KEY\"\n});\n```\n\n### Examples\n\n```js\n\nvar cat = {\n        name: \"Sam\",\n        age: 1.1,\n        interests: [\"play\", \"run\", \"eat\"]\n    }\n\n    // add new object\n    var id = await client.add(\"cat\", cat);\n\n    // get object by id\n    cat = await client.getOne(\"cat\", id);\n\n    // update object\n    cat.age = 1.5;\n    await client.update(\"cat\", cat);\n\n    // get filtered array of objects.\n    var allcats = await client.get(\"cat\"); // return all cats\n    var cats = await client.get(\"cat\", { age: 1.5 }); // 1.5 years old cats\n    cats = await client.get(\"cat\", { age_gt: 1.0 }); // cats older than 1 year\n    cats = await client.get(\"cat\", { name_like: \"Sa*\" });\n\n    //Learn more about filtering operators at: http://easyeasy.io/docs#/operators\n\n    // paging\n\n    cats = await client.get(\"cat\", { _start: 20, _count: 20 });\n\n    // ordering\n    cats = await client.get(\"cat\", { _orderby: \"age\" });\n    cats = await client.get(\"cat\", { _orderbydesc: \"age\" });\n\n    //delete\n\n    await client.del('cat', id);\n```\n\n# Licence\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fjs-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F21dimensions%2Fjs-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F21dimensions%2Fjs-client/lists"}