{"id":31597715,"url":"https://github.com/timokluser-dev/n8n-nodes-kdrive","last_synced_at":"2025-10-06T05:23:49.086Z","repository":{"id":315984111,"uuid":"1052888244","full_name":"timokluser-dev/n8n-nodes-kdrive","owner":"timokluser-dev","description":"n8n nodes for infomaniak's kDrive","archived":false,"fork":false,"pushed_at":"2025-09-08T17:29:41.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-22T02:54:37.510Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/timokluser-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-08T17:29:38.000Z","updated_at":"2025-09-08T17:29:47.000Z","dependencies_parsed_at":"2025-09-22T02:54:39.449Z","dependency_job_id":"4e02f4f0-0041-489a-8c18-83659be8299c","html_url":"https://github.com/timokluser-dev/n8n-nodes-kdrive","commit_stats":null,"previous_names":["timokluser-dev/n8n-nodes-kdrive"],"tags_count":null,"template":false,"template_full_name":"n8n-io/n8n-nodes-starter","purl":"pkg:github/timokluser-dev/n8n-nodes-kdrive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timokluser-dev%2Fn8n-nodes-kdrive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timokluser-dev%2Fn8n-nodes-kdrive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timokluser-dev%2Fn8n-nodes-kdrive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timokluser-dev%2Fn8n-nodes-kdrive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timokluser-dev","download_url":"https://codeload.github.com/timokluser-dev/n8n-nodes-kdrive/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timokluser-dev%2Fn8n-nodes-kdrive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278561277,"owners_count":26006954,"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-10-06T02:00:05.630Z","response_time":65,"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":"2025-10-06T05:23:45.728Z","updated_at":"2025-10-06T05:23:49.077Z","avatar_url":"https://github.com/timokluser-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)\n\n# n8n-nodes-starter\n\nThis repo contains example nodes to help you get started building your own custom integrations for [n8n](https://n8n.io). It includes the node linter and other dependencies.\n\nTo make your custom node available to the community, you must create it as an npm package, and [submit it to the npm registry](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry).\n\nIf you would like your node to be available on n8n cloud you can also [submit your node for verification](https://docs.n8n.io/integrations/creating-nodes/deploy/submit-community-nodes/).\n\n## Prerequisites\n\nYou need the following installed on your development machine:\n\n* [git](https://git-scm.com/downloads)\n* Node.js and npm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).\n* Install n8n with:\n  ```\n  npm install n8n -g\n  ```\n* Recommended: follow n8n's guide to [set up your development environment](https://docs.n8n.io/integrations/creating-nodes/build/node-development-environment/).\n\n## Using this starter\n\nThese are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the [documentation](https://docs.n8n.io/integrations/creating-nodes/).\n\n1. [Generate a new repository](https://github.com/n8n-io/n8n-nodes-starter/generate) from this template repository.\n2. Clone your new repo:\n   ```\n   git clone https://github.com/\u003cyour organization\u003e/\u003cyour-repo-name\u003e.git\n   ```\n3. Run `npm i` to install dependencies.\n4. Open the project in your editor.\n5. Browse the examples in `/nodes` and `/credentials`. Modify the examples, or replace them with your own nodes.\n6. Update the `package.json` to match your details.\n7. Run `npm run lint` to check for errors or `npm run lintfix` to automatically fix errors when possible.\n8. Test your node locally. Refer to [Run your node locally](https://docs.n8n.io/integrations/creating-nodes/test/run-node-locally/) for guidance.\n9. Replace this README with documentation for your node. Use the [README_TEMPLATE](README_TEMPLATE.md) to get started.\n10. Update the LICENSE file to use your details.\n11. [Publish](https://docs.npmjs.com/packages-and-modules/contributing-packages-to-the-registry) your package to npm.\n\n## More information\n\nRefer to our [documentation on creating nodes](https://docs.n8n.io/integrations/creating-nodes/) for detailed information on building your own nodes.\n\n## License\n\n[MIT](https://github.com/n8n-io/n8n-nodes-starter/blob/master/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimokluser-dev%2Fn8n-nodes-kdrive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimokluser-dev%2Fn8n-nodes-kdrive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimokluser-dev%2Fn8n-nodes-kdrive/lists"}