{"id":30059988,"url":"https://github.com/tiaanduplessis/fuzzy-finder","last_synced_at":"2025-08-08T01:41:22.347Z","repository":{"id":24185300,"uuid":"100825741","full_name":"tiaanduplessis/fuzzy-finder","owner":"tiaanduplessis","description":"🔎 Tiny fuzzy searcher (356 Bytes gzipped)","archived":false,"fork":false,"pushed_at":"2023-01-03T17:45:43.000Z","size":3519,"stargazers_count":12,"open_issues_count":12,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-02T17:01:52.330Z","etag":null,"topics":["find","fuzzy","ranked","search"],"latest_commit_sha":null,"homepage":"","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/tiaanduplessis.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}},"created_at":"2017-08-19T22:54:35.000Z","updated_at":"2024-01-08T00:22:53.000Z","dependencies_parsed_at":"2022-07-27T04:32:25.585Z","dependency_job_id":null,"html_url":"https://github.com/tiaanduplessis/fuzzy-finder","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/tiaanduplessis/fuzzy-finder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiaanduplessis%2Ffuzzy-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiaanduplessis%2Ffuzzy-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiaanduplessis%2Ffuzzy-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiaanduplessis%2Ffuzzy-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tiaanduplessis","download_url":"https://codeload.github.com/tiaanduplessis/fuzzy-finder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiaanduplessis%2Ffuzzy-finder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269352394,"owners_count":24402671,"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","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["find","fuzzy","ranked","search"],"created_at":"2025-08-08T01:41:08.323Z","updated_at":"2025-08-08T01:41:22.308Z","avatar_url":"https://github.com/tiaanduplessis.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"50%\" src=\"assets/demo.gif\" alt=\"\"/\u003e\n\u003c/div\u003e\n\n# fuzzy-finder\n\n\u003e Tiny fuzzy searcher (Under 300 bytes gzipped)\n\n[![npm package version](https://img.shields.io/npm/v/fuzzy-finder.svg?style=flat-square)](https://npmjs.org/package/fuzzy-finder)\n[![npm downloads](https://img.shields.io/npm/dm/fuzzy-finder.svg?style=flat-square)](https://npmjs.org/package/fuzzy-finder)\n[![standard JS linter](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)\n[![travis ci build status](https://img.shields.io/travis/tiaanduplessis/fuzzy-finder.svg?style=flat-square)](https://travis-ci.org/tiaanduplessis/fuzzy-finder)\n[![project license](https://img.shields.io/npm/l/fuzzy-finder.svg?style=flat-square)](https://github.com/tiaanduplessis/fuzzy-finder/blob/master/LICENSE)\n[![make a pull request](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n[![Greenkeeper](https://badges.greenkeeper.io/tiaanduplessis/fuzzy-finder.svg)](https://greenkeeper.io)\n\n## Table of Contents\n\n- [fuzzy-finder](#fuzzy-finder)\n  - [Table of Contents](#table-of-contents)\n  - [Install](#install)\n  - [Usage](#usage)\n  - [Contributing](#contributing)\n  - [License](#license)\n\n## Install\n\n```sh\n$ npm install fuzzy-finder\n# OR\n$ yarn add fuzzy-finder\n```\n\nOr with CDN:\n\n```html\n\u003cscript src=\"https://unpkg.com/fuzzy-finder@1.0.4/dist/fuzzy-finder.umd.js\"\u003e\u003c/script\u003e\n```\n\n## Usage\n\n```js\nimport fuzzyFinder from 'fuzzy-finder'\n\nconsole.log(fuzzy('da', [\n    'dota.js',\n    'stratures.js',\n    'structures.js',\n    'database.db',\n    'user-data.js',\n    'dummy-data.txt',\n    'other.js'\n]))\n// [ { match: 'dota.js', rank: 0 },\n//   { match: 'database.db', rank: 0 },\n//   { match: 'user-data.js', rank: 5 },\n//   { match: 'dummy-data.txt', rank: 0 } ]\n```\n\nCheck out the example [here](https://codepen.io/tiaan/full/ayYZaM/).\n\n## Contributing\n\nContributions are welcome!\n\n1. Fork it.\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\nOr open up [a issue](https://github.com/tiaanduplessis/fuzzy-finder/issues).\n\n## License\n\nLicensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiaanduplessis%2Ffuzzy-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftiaanduplessis%2Ffuzzy-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiaanduplessis%2Ffuzzy-finder/lists"}