{"id":22770243,"url":"https://github.com/ujjwalguptaofficial/keystore","last_synced_at":"2026-06-28T23:31:40.004Z","repository":{"id":88060091,"uuid":"98610578","full_name":"ujjwalguptaofficial/KeyStore","owner":"ujjwalguptaofficial","description":"keyStore is a library for javascript. It saves data in key and value format in html5 storage technology indexedDb.","archived":false,"fork":false,"pushed_at":"2017-08-08T12:22:31.000Z","size":675,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-05T13:37:33.396Z","etag":null,"topics":["alternative","keystore","keystores","localstorage","ujjwalgupta","ujjwalguptaofficial"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/ujjwalguptaofficial.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.TXT","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":"2017-07-28T05:10:30.000Z","updated_at":"2018-10-22T15:24:03.000Z","dependencies_parsed_at":"2023-03-01T14:00:41.423Z","dependency_job_id":null,"html_url":"https://github.com/ujjwalguptaofficial/KeyStore","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/ujjwalguptaofficial%2FKeyStore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujjwalguptaofficial%2FKeyStore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujjwalguptaofficial%2FKeyStore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ujjwalguptaofficial%2FKeyStore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ujjwalguptaofficial","download_url":"https://codeload.github.com/ujjwalguptaofficial/KeyStore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246314125,"owners_count":20757457,"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":["alternative","keystore","keystores","localstorage","ujjwalgupta","ujjwalguptaofficial"],"created_at":"2024-12-11T15:29:51.126Z","updated_at":"2025-10-30T20:12:08.471Z","avatar_url":"https://github.com/ujjwalguptaofficial.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nkeyStore is a storage library for javascript. It saves data in key and value pair in indexedDb.It acts as an alternative of localStorage.\n\n# Feature\n\n1. Preserves data type.\n2. No size limitation.\n3. Can save any type of data including object or blob storage. \n4. Asynchronous api and sync data. It means when you will execute two query together query will be executed one after another.\n\n# Doc\n\n## set - This will insert or update data.\n\n```\nSyntax: KeyStore.set(Key,value,callBack);\n\nExample -\n\nKeyStore.set('form-data',{\n    Name:'Ujjwal Gupta',\n    Country:'India',\n    State:'Odisha',\n    City:'Bhubaneswar'\n});\n\nor with callback\n\nKeyStore.set('hello','world',function(){\n\t\n});\n\n```\n### Note : - callback will be executed when data has been successfully inserted.\n\n## get - This will return data in callback.\n\n```\nSyntax: KeyStore.get(Key,callBack);\n\nExample -\n\nKeyStore.get('c',function(result){\n    console.log(result);\n})\n\n```\n\n## remove - This will remove data\n\n```\nSyntax: KeyStore.remove(Key,callBack);\n\nExample-\n\nKeyStore.remove('c');\n\nor with callback\n\nKeyStore.remove('c',function(result){\n\tconsole.log(result);\n})\n\n```\n\n## Chaining\n\n```\nKeyStore.set('hello','world').\nget('hello',function(result){\n    console.log(result);\n}).\nremove('hello');\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fujjwalguptaofficial%2Fkeystore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fujjwalguptaofficial%2Fkeystore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fujjwalguptaofficial%2Fkeystore/lists"}