{"id":43163146,"url":"https://github.com/sauromates/nuxt-redmine","last_synced_at":"2026-02-01T01:38:03.722Z","repository":{"id":213400341,"uuid":"733860225","full_name":"sauromates/nuxt-redmine","owner":"sauromates","description":"Redmine REST API integration for Nuxt","archived":false,"fork":false,"pushed_at":"2023-12-29T13:00:05.000Z","size":232,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T23:59:04.540Z","etag":null,"topics":["issue-tracking","nuxt","nuxt-api","nuxt-module","project-management","redmine"],"latest_commit_sha":null,"homepage":"","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/sauromates.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-12-20T09:46:00.000Z","updated_at":"2023-12-29T08:55:38.000Z","dependencies_parsed_at":"2023-12-20T19:46:38.838Z","dependency_job_id":"c859915c-7b62-44dc-888a-b76bb1613c8b","html_url":"https://github.com/sauromates/nuxt-redmine","commit_stats":null,"previous_names":["sauromates/nuxt-redmine"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/sauromates/nuxt-redmine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sauromates%2Fnuxt-redmine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sauromates%2Fnuxt-redmine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sauromates%2Fnuxt-redmine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sauromates%2Fnuxt-redmine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sauromates","download_url":"https://codeload.github.com/sauromates/nuxt-redmine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sauromates%2Fnuxt-redmine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28963913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T01:25:30.373Z","status":"ssl_error","status_checked_at":"2026-02-01T01:25:29.809Z","response_time":128,"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":["issue-tracking","nuxt","nuxt-api","nuxt-module","project-management","redmine"],"created_at":"2026-02-01T01:38:02.588Z","updated_at":"2026-02-01T01:38:03.715Z","avatar_url":"https://github.com/sauromates.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nuxt Redmine\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n[![Nuxt][nuxt-src]][nuxt-href]\n\nRedmine REST API integration for Nuxt\n\n**DISCLAIMER: Package is at a very early stage of development and not suited for production. Any suggestions, bug reports and contributions are most welcome.**\n\n- [✨ \u0026nbsp;Release Notes](/CHANGELOG.md)\n    \u003c!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/nuxt-redmine?file=playground%2Fapp.vue) --\u003e\n  \u003c!-- - [📖 \u0026nbsp;Documentation](/docs) --\u003e\n\n## Features\n\n\u003c!-- Highlight some of the features your module provide here --\u003e\n\n- Redmine REST API resources provided via Nuxt API routes\n- Fully typed composables for resource operations\n\n## Quick Setup\n\n### Redmine\n\n1. You should have access to a running Redmine instace (e.g. https://redmine.mydomain.com)\n2. Configure your Redmine instance to allow API tokens authentication (see [Redmine documentation](https://www.redmine.org/projects/redmine/wiki/Rest_api#Authentication))\n\n### Nuxt\n\n1. Add `nuxt-redmine` dependency to your project\n\n```bash\n# Using pnpm\npnpm add -D nuxt-redmine\n\n# Using yarn\nyarn add --dev nuxt-redmine\n\n# Using npm\nnpm install --save-dev nuxt-redmine\n```\n\n2. Add `nuxt-redmine` to the `modules` section of `nuxt.config.ts`\n\n```js\nexport default defineNuxtConfig({\n  modules: ['nuxt-redmine']\n})\n```\n\n3. Add your Redmine URL and API token to runtime configuration\n\n```js\nexport default defineNuxtConfig({\n  modules: ['nuxt-redmine'],\n  redmine: {\n    redmineApiKey: '', // Admin API key is required!\n    baseUrl: 'https://redmine.mydomain.com',\n    // Optional\n    responseFormat: 'json', // Currently the only supported format\n    resources: ['issues', 'users'] // Defaults to all available resources\n  }\n})\n```\n\n**Security warning**: DO NOT save your API key in `nuxt.config.ts` file. Use `.env` instead.\n\n```sh\nNUXT_REDMINE_API_KEY=myverysecretkey\n```\n\nThat's it! Nuxt Redmine will automatically configure Nuxt API routes for Redmine queries, which you can use from composables or direct calls ✨\n\n## Usage\n\nModule provides composables for each Redmine REST resource (i.e. `/issues`). Being just wrappers for built-in `$fetch` call, they provide typed request and response objects and allow to use internal model types instead of direct usage of request body.\n\nAlthough composables are recommended for usage, it's also possible to use `useFetch` or `useAsyncData` directly, since module generates Nuxt API routes.\n\n```ts\n\u003cscript setup lang=\"ts\"\u003e\n// Using a registry\nconst { search } = useRedmineIssues()\n\n// Using composable to perform data fetching\n// This way query object will have IDE type completion\nconst { data } = useAsyncData('issues', () =\u003e search({ query: { limit: 5, tracker_id: 2 } }))\n\n// Using direct API call to perform data fetching\nconst { data } = useFetch('/api/redmine/issues', { query: { limit: 5, tracker_id: 2 } })\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cdiv v-for=\"issue in data.issues\" :key=\"issue.id\"\u003e\n    {{ issue.subject }}\n  \u003c/div\u003e\n\u003c/template\u003e\n```\n\n## Testing\n\nDue to the purpose of the module, most of the testing is possible only against a real Redmine instance. Repository provides a Docker image of Redmine with preconfigured web server settings.\n\n## License\n\nPublished under [MIT license](LICENSE)\n\n\u003c!-- Badges --\u003e\n\n[npm-version-src]: https://img.shields.io/npm/v/nuxt-redmine/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://npmjs.com/package/nuxt-redmine\n[npm-downloads-src]: https://img.shields.io/npm/dm/nuxt-redmine.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-downloads-href]: https://npmjs.com/package/nuxt-redmine\n[license-src]: https://img.shields.io/npm/l/nuxt-redmine.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[license-href]: https://npmjs.com/package/nuxt-redmine\n[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js\n[nuxt-href]: https://nuxt.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsauromates%2Fnuxt-redmine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsauromates%2Fnuxt-redmine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsauromates%2Fnuxt-redmine/lists"}