{"id":15707027,"url":"https://github.com/ulisesgascon/micro-utilities","last_synced_at":"2025-07-31T08:39:02.626Z","repository":{"id":65962915,"uuid":"603462223","full_name":"UlisesGascon/micro-utilities","owner":"UlisesGascon","description":"A bunch of small utilities that I reuse across projects","archived":false,"fork":false,"pushed_at":"2024-02-15T16:15:12.000Z","size":2267,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-21T16:47:02.039Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UlisesGascon.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-18T15:35:22.000Z","updated_at":"2023-08-19T07:09:45.000Z","dependencies_parsed_at":"2024-10-10T03:30:36.872Z","dependency_job_id":"daa53dfe-551d-4922-8046-c9c74ca03087","html_url":"https://github.com/UlisesGascon/micro-utilities","commit_stats":{"total_commits":96,"total_committers":4,"mean_commits":24.0,"dds":0.03125,"last_synced_commit":"ea073772236060cfc13c61171179c585b00a6213"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/UlisesGascon/micro-utilities","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UlisesGascon%2Fmicro-utilities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UlisesGascon%2Fmicro-utilities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UlisesGascon%2Fmicro-utilities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UlisesGascon%2Fmicro-utilities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UlisesGascon","download_url":"https://codeload.github.com/UlisesGascon/micro-utilities/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UlisesGascon%2Fmicro-utilities/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268014048,"owners_count":24181323,"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-07-31T02:00:08.723Z","response_time":66,"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":[],"created_at":"2024-10-03T20:32:50.522Z","updated_at":"2025-07-31T08:39:02.586Z","avatar_url":"https://github.com/UlisesGascon.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Micro Utilities\n\nA bunch of small utilities that I reuse across projects\n\n## What's inside?\n\nThis turborepo uses [npm](https://www.npmjs.com/) as a package manager. It includes the following packages/apps:\n\n### Apps and Packages\n\n#### Published\n\n- [@ulisesgascon/normalize-boolean](/packages/normalize-boolean/README.md) - _Simple and very opinionated wrapper to manage Boolean conversions_\n- [@ulisesgascon/is-different](/packages/is-different/README.md) - _A limited way to compare two values and return true if they are different_\n- [@ulisesgascon/array-to-chunks](/packages/array-to-chunks/README.md) - _A simple way to slice an array into chunks_\n- [@ulisesgascon/simplify-object](/packages/simplify-object/README.md) - _A simple way to return a new object with less properties_\n- [@ulisesgascon/soft-assign-deep-property](/packages/soft-assign-deep-property/README.md) - _A simple way to assign a deep property to an object without overwriting any existing properties within it._\n- [@ulisesgascon/text-tags-manager](/packages/text-tags-manager/README.md) - _Utils to manage text tags more easy to use, you know what I mean._\n- [@ulisesgascon/string-to-array](/packages/string-to-array/README.md) - _A simple and opinionated way to convert a string to an array._\n- [@ulisesgascon/rss-feed-parser](/packages/rss-feed-parser/README.md) - _A simple and easy to use RSS feed parser._\n\n#### Internal\n\n- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)\n- `tsconfig`: `tsconfig.json`s used throughout the monorepo\n\nEach package is 100% [TypeScript](https://www.typescriptlang.org/).\n\n### Utilities\n\nThis turborepo has some additional tools already setup for you:\n\n- [TypeScript](https://www.typescriptlang.org/) for static type checking\n- [ESLint](https://eslint.org/) for code linting\n- [Prettier](https://prettier.io) for code formatting\n\n### Build\n\nTo build all packages, run the following command:\n\n```\ncd micro-utilities\nnpm run build\n```\n\n### Lint\n\nTo lint all packages, run the following command:\n\n```\ncd micro-utilities\nnpm run dev\n```\n\n### Test\n\nTo test all packages, run the following command:\n\n```\ncd micro-utilities\nnpm run test\nnpm run test:coverage\nnpm run test:watch\n```\n\n### Benchmark\n\nTo benchmark all packages, run the following command:\n\n```\ncd micro-utilities\nnpm run benchmark\n```\n\n## Useful Links\n\nLearn more about the power of Turborepo:\n\n- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)\n- [Caching](https://turbo.build/repo/docs/core-concepts/caching)\n- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)\n- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)\n- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)\n- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulisesgascon%2Fmicro-utilities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fulisesgascon%2Fmicro-utilities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulisesgascon%2Fmicro-utilities/lists"}