{"id":13494964,"url":"https://github.com/remeda/remeda","last_synced_at":"2025-05-13T16:06:02.794Z","repository":{"id":37663803,"uuid":"132434056","full_name":"remeda/remeda","owner":"remeda","description":"A utility library for JavaScript and TypeScript.","archived":false,"fork":false,"pushed_at":"2025-05-05T08:01:55.000Z","size":6042,"stargazers_count":4891,"open_issues_count":31,"forks_count":152,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-05-05T22:49:34.677Z","etag":null,"topics":["functional","programming","typescript","utility"],"latest_commit_sha":null,"homepage":"http://remedajs.com","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/remeda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null},"funding":{"github":"remeda"}},"created_at":"2018-05-07T08:56:53.000Z","updated_at":"2025-05-05T07:58:24.000Z","dependencies_parsed_at":"2022-07-12T16:42:35.163Z","dependency_job_id":"2b84a34a-8a60-470c-8a22-50b61be6a493","html_url":"https://github.com/remeda/remeda","commit_stats":{"total_commits":217,"total_committers":54,"mean_commits":4.018518518518518,"dds":0.8248847926267281,"last_synced_commit":"f750bd25397eec66b2652c77895ca5136b9739c1"},"previous_names":[],"tags_count":218,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remeda%2Fremeda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remeda%2Fremeda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remeda%2Fremeda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remeda%2Fremeda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remeda","download_url":"https://codeload.github.com/remeda/remeda/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252590526,"owners_count":21772935,"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":["functional","programming","typescript","utility"],"created_at":"2024-07-31T19:01:29.956Z","updated_at":"2025-05-05T22:49:36.206Z","avatar_url":"https://github.com/remeda.png","language":"TypeScript","readme":"# Remeda\n\nThe first \"data-first\" and \"data-last\" utility library designed especially for TypeScript.\n\n[![GitHub License](https://img.shields.io/github/license/remeda/remeda?style=flat-square)](https://github.com/remeda/remeda?tab=MIT-1-ov-file#readme)\n![GitHub top language](https://img.shields.io/github/languages/top/remeda/remeda?logo=typescript\u0026style=flat-square)\n[![NPM](https://img.shields.io/npm/v/remeda?logo=npm\u0026style=flat-square)](https://www.npmjs.org/package/remeda)\n[![NPM Downloads](https://img.shields.io/npm/dm/remeda?logo=npm\u0026style=flat-square)](https://npmtrends.com/remeda)\n![GitHub Repo stars](https://img.shields.io/github/stars/remeda/remeda?logo=github\u0026style=flat-square)\n[![Libraries.io SourceRank](https://img.shields.io/librariesio/sourcerank/npm/remeda?logo=librariesdotio\u0026style=flat-square)](https://libraries.io/npm/remeda/sourcerank)\u003cbr /\u003e\n[![Codecov](https://img.shields.io/codecov/c/github/remeda/remeda?logo=codecov\u0026style=flat-square)](https://codecov.io/gh/remeda/remeda)\n[![GitHub branch status](https://img.shields.io/github/checks-status/remeda/remeda/main?logo=github\u0026style=flat-square)](https://github.com/remeda/remeda/actions/workflows)\n[![GitHub Release Date](https://img.shields.io/github/release-date/remeda/remeda?logo=npm\u0026style=flat-square)](https://github.com/remeda/remeda/releases)\n[![Commits](https://img.shields.io/github/commit-activity/y/remeda/remeda?logo=github\u0026style=flat-square)](https://github.com/remeda/remeda/commits/main/)\n[![All contributors](https://img.shields.io/github/contributors/remeda/remeda?logo=github\u0026style=flat-square)](https://github.com/remeda/remeda/graphs/contributors)\n\n## Documentation\n\nRead the full docs and API reference on [remedajs.com/docs](https://remedajs.com/docs).\n\nMigrating from other libraries? Check out our migration guides for [Lodash](https://remedajs.com/migrate/lodash) and [Ramda](https://remedajs.com/migrate/ramda)!\n\nInterested in contributing? Read the [contributing guide](CONTRIBUTING.md).\n\n## Features\n\n- First-class TypeScript support, with types that are as specific as possible.\n- Supports data-first (`R.filter(array, fn)`) and data-last (`R.filter(fn)(array)`) approaches.\n- Lazy evaluation support with `pipe` and `piped`.\n- Runtime and types are both extensively tested, with full code coverage.\n- Tree-shakable, supports CJS and ESM.\n- Fully documented with JSDoc, supports in-editor function documentation.\n\n## Getting started\n\n### Installation\n\n```bash\nnpm install remeda\npnpm add remeda\nyarn add remeda\nbun install remeda\n```\n\n### Usage\n\n```js\n// Import everything:\nimport * as R from \"remeda\";\n\n// Or import methods individually:\n// import { pipe, tap, unique, take } from \"remeda\";\n\nR.pipe(\n  [1, 2, 2, 3, 3, 4, 5, 6],\n  R.tap((value) =\u003e console.log(`Got ${value}`)),\n  R.unique(),\n  R.take(3),\n); // =\u003e [1, 2, 3]\n\n// Console output:\n// Got 1\n// Got 2\n// Got 2\n// Got 3\n```\n\n### Getting help\n\nQuestions, bug reports, and feature requests are tracked in [GitHub issues](https://github.com/remeda/remeda/issues).\n\n## Contributors\n\n\u003ca href=\"https://github.com/remeda/remeda/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=remeda/remeda\" /\u003e\n\u003c/a\u003e\n\nMade with [contrib.rocks](https://contrib.rocks).\n","funding_links":["https://github.com/sponsors/remeda"],"categories":["TypeScript","Uncategorized","typescript",":books: Libraries","Generic Utilities"],"sub_categories":["Uncategorized","Universal","Reactive Programming"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremeda%2Fremeda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremeda%2Fremeda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremeda%2Fremeda/lists"}