{"id":15999674,"url":"https://github.com/jaredwray/qified","last_synced_at":"2026-04-25T00:02:44.309Z","repository":{"id":257605244,"uuid":"858841627","full_name":"jaredwray/qified","owner":"jaredwray","description":"Cloud Queues with Task and Messages and Multiple Providers","archived":false,"fork":false,"pushed_at":"2026-04-04T20:12:53.000Z","size":1249,"stargazers_count":13,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-12T21:55:57.406Z","etag":null,"topics":["kafka","message-queue","nats","queue","rabbitmq","redis","tasks"],"latest_commit_sha":null,"homepage":"https://qified.org","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/jaredwray.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2024-09-17T16:16:14.000Z","updated_at":"2026-04-04T20:12:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"12c1240f-52dc-455b-a480-a4d890d04a26","html_url":"https://github.com/jaredwray/qified","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"1149432b744c784c51ff9e0a6bf4912759ac943e"},"previous_names":["jaredwray/qified"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/jaredwray/qified","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredwray%2Fqified","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredwray%2Fqified/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredwray%2Fqified/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredwray%2Fqified/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaredwray","download_url":"https://codeload.github.com/jaredwray/qified/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredwray%2Fqified/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32052987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["kafka","message-queue","nats","queue","rabbitmq","redis","tasks"],"created_at":"2024-10-08T09:00:51.203Z","updated_at":"2026-04-25T00:02:44.298Z","avatar_url":"https://github.com/jaredwray.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![site/logo.svg](site/logo.svg)](https://qified.org)\n\n[![tests](https://github.com/jaredwray/qified/actions/workflows/tests.yaml/badge.svg)](https://github.com/jaredwray/qified/actions/workflows/tests.yaml)\n[![GitHub license](https://img.shields.io/github/license/jaredwray/qified)](https://github.com/jaredwray/qified/blob/main/LICENSE)\n[![codecov](https://codecov.io/gh/jaredwray/qified/graph/badge.svg?token=jcRdy8SkOG)](https://codecov.io/gh/jaredwray/qified)\n[![npm](https://img.shields.io/npm/dm/qified)](https://npmjs.com/package/qified)\n[![npm](https://img.shields.io/npm/v/qified)](https://npmjs.com/package/qified)\n\n# qified\nTask and Message Queues with Multiple Providers\n\nThis is a mono repo that contains the following packages:\n* [qified](packages/qified/README.md) - The main package that contains the core functionality and a built in in-memory provider.\n\nAdditional packages:\n* [@qified/redis](packages/redis/README.md) - Redis Provider (messages and tasks)\n* [@qified/rabbitmq](packages/rabbitmq/README.md) - RabbitMQ Provider (messages and tasks)\n* [@qified/nats](packages/nats/README.md) - NATS Provider (messages and tasks)\n* [@qified/zeromq](packages/zeromq/README.md) - ZeroMQ Provider (messages only)\n\n# Development and Testing\n\nQified is written in TypeScript and tests are written in `vitest`. To run the tests, use the following command:\n\n1. `nvm use` - This will use the correct node version\n2. `pnpm install` - This will install all the dependencies\n3. `pnpm test:services:start` - This will start the services needed for testing (Redis, RabbitMQ, etc)\n4. `pnpm test` - This will run the tests\n\nTo contribute follow the [Contributing Guidelines](CONTRIBUTING.md) and [Code of Conduct](CODE_OF_CONDUCT.md).\n\n# Publishing\n\nThis is a mono repo and uses [pnpm](https://pnpm.io/) for package management. In addition all packages are versioned using [semantic versioning](https://semver.org/) and are published using github actions. To do a version bump and publish, follow these steps:\n\n1. Make sure you have the latest changes from the main branch.\n2. Update the `package.json` in the root directory with the new version number.\n   - If you are making a breaking change, use the `major` version bump. `X.0.0`\n   - If you are adding new features, use the `minor` version bump. `0.X.0`\n   - If you are making a bug fix, use the `patch` version bump. `0.0.X`\n3. Sync the version changes to all packages by running `pnpm version:sync`.\n4. Check the changes and commit them to the main branch.\n5. Do a release on GitHub. This will trigger the GitHub Actions workflow to publish the packages.\n\n# License\n[MIT \u0026 © Jared Wray](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredwray%2Fqified","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaredwray%2Fqified","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredwray%2Fqified/lists"}