{"id":15382235,"url":"https://github.com/askbeka/react-trie-search","last_synced_at":"2026-04-22T10:33:23.029Z","repository":{"id":144020198,"uuid":"72652309","full_name":"askbeka/react-trie-search","owner":"askbeka","description":"react search component consuming trie for efficent search ","archived":false,"fork":false,"pushed_at":"2016-12-12T13:07:55.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T23:47:11.755Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/askbeka.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":"2016-11-02T15:16:02.000Z","updated_at":"2021-03-06T07:20:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"91776212-5fe6-43d3-9799-8b4059c56dfd","html_url":"https://github.com/askbeka/react-trie-search","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"637b4e5eb52830d0c98b2bc63bba342c4c2d01f3"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/askbeka/react-trie-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/askbeka%2Freact-trie-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/askbeka%2Freact-trie-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/askbeka%2Freact-trie-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/askbeka%2Freact-trie-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/askbeka","download_url":"https://codeload.github.com/askbeka/react-trie-search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/askbeka%2Freact-trie-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32132440,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"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":[],"created_at":"2024-10-01T14:30:25.857Z","updated_at":"2026-04-22T10:33:23.010Z","avatar_url":"https://github.com/askbeka.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-trie-search\nreact search component consuming trie for efficent search \n\n## Usage\n#### Consuming array of strings\n```\nimport Search from 'react-trie-search';\n\nrender() {\n  return \u003cSearch items={['Hello World', 'Foo Bar']} onResult={result =\u003e console.log(result)}}/\u003e\n}\n```\n\n#### Consuming array of objects\n```\nimport Search from 'react-trie-search';\n\nconst getter = ({value}) =\u003e value;\n\nrender() {\n  return \u003cSearch items={[{id: 0, value: 'some value'}, {id: 1, value: 'some value 1'}]} getter={getter} onResult={result =\u003e console.log(result)}}/\u003e\n}\n```\n\n#### Consuming Trie instance\n```\nimport Search, {Trie} from 'react-trie-search';\n\nconst getter = ({value}) =\u003e value;\n\nconst trie = new Trie([{id: 0, value: 'some value'}, {id: 1, value: 'some value 1'}], getter);\n\nrender() {\n  return \u003cSearch trie={trie} onResult={result =\u003e console.log(result)}}/\u003e\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faskbeka%2Freact-trie-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faskbeka%2Freact-trie-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faskbeka%2Freact-trie-search/lists"}