{"id":16420873,"url":"https://github.com/cinaaaa/pleex","last_synced_at":"2025-10-26T20:33:11.063Z","repository":{"id":41898120,"uuid":"259896533","full_name":"cinaaaa/pleex","owner":"cinaaaa","description":"⚛️ Turning Async Storage to Schematic based","archived":false,"fork":false,"pushed_at":"2023-01-27T04:41:09.000Z","size":417,"stargazers_count":4,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-06T19:57:50.743Z","etag":null,"topics":["async-storage","pleex","react-native","react-native-async-storage","react-native-pleex","schematics"],"latest_commit_sha":null,"homepage":"https://pleex.gitbook.io/docs","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/cinaaaa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2020-04-29T10:37:45.000Z","updated_at":"2025-01-19T14:06:49.000Z","dependencies_parsed_at":"2023-02-15T05:32:18.876Z","dependency_job_id":null,"html_url":"https://github.com/cinaaaa/pleex","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/cinaaaa%2Fpleex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinaaaa%2Fpleex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinaaaa%2Fpleex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cinaaaa%2Fpleex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cinaaaa","download_url":"https://codeload.github.com/cinaaaa/pleex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238397316,"owners_count":19465152,"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":["async-storage","pleex","react-native","react-native-async-storage","react-native-pleex","schematics"],"created_at":"2024-10-11T07:29:22.436Z","updated_at":"2025-10-26T20:33:05.739Z","avatar_url":"https://github.com/cinaaaa.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"pleex\" src=\"https://i.ibb.co/LP4kSq3/sign.png\" width=\"300\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e Pleex \u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e\n  💣 \" Schematic \" ➕ \" Storage \" 💣 for ⚛️ react native\n\u003c/h3\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://travis-ci.com/E-RROR/pleex.svg?branch=master\"/\u003e\n  \u003cimg src=\"https://img.shields.io/badge/with%20%E2%9D%A4-yes-brightgreen\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/license/E-RROR/pleex\" /\u003e\n  \u003cimg src=\"https://img.shields.io/github/package-json/v/E-RROR/pleex?color=blue\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/document-yes-lightgreen\" /\u003e\n  \u003cimg src=\"https://img.shields.io/npm/v/pleex\" /\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003eBuilt with ❤ Sina Farhadi\u003c/h3\u003e\n\u003cbr /\u003e\n\n## Get Started\n\n### Installation\n\ninstall pleex with npm or yarn\n```bash\nnpm i pleex\n```\nor\n```bash\nyarn add pleex\n```\nalso pleex don't need any extra configuration or installation with gradle or pods\n\n### Want to see example? see youtube tutorial\n[![YOUTUBE](https://img.youtube.com/vi/7bTX-mWmktw/0.jpg)](https://www.youtube.com/watch?v=7bTX-mWmktw)\n\n### Example Usage\n\nFull example and list of api's can be find in [pleex documents](https://pleex.gitbook.io/docs)\n\u003cbr /\u003e\nthis is example of creating schemas with pleex\n```jsx\nimport {Pleex} from 'pleex';\n\nconst my_collection = Pleex.collection('test');\n\nconst my_schema = Pleex.schema({\n  name: String,\n  age: Number,\n});\n\nmy_collection.insert(\n    {\n      name: 'Jack',\n      age: 12,\n    },\n    my_schema,\n    (success) =\u003e // Success,\n    (error) =\u003e console.error(error)\n);\n```\n\n### Tests\nyou can test source code by\n```bash\nnpm test\n```\n\n### This package helps you in:\n- #### Having simple storage\n- #### Create Schema and use them\n- #### Type cheking for schemas\n- #### Async workflow\n- #### Integrated with async storage\n- #### Save and use Json objects\n- #### Built in searching api \n\n### 🙋‍♂️ Contributing\nFind issues or want to add features? see contributing [guide](https://pleex.gitbook.io/docs/contributing/how-to-contribute)\n\n### Current api's:\n- #### Collection\n- #### Schema\n- #### Insert\n- #### removeItem\n- #### removeItems\n- #### getItem\n- #### getItems\n- #### clearCollection\n- #### getAll\n- #### Multiple insert\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcinaaaa%2Fpleex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcinaaaa%2Fpleex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcinaaaa%2Fpleex/lists"}