{"id":15101763,"url":"https://github.com/pirogoeth/n8n-node-code-runner","last_synced_at":"2026-03-07T06:32:12.157Z","repository":{"id":253700047,"uuid":"842560542","full_name":"pirogoeth/n8n-node-code-runner","owner":"pirogoeth","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-30T04:53:12.000Z","size":145,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-12T22:37:00.043Z","etag":null,"topics":["bun","n8n-community-node-package","typescript","work-in-progress"],"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/pirogoeth.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}},"created_at":"2024-08-14T15:44:28.000Z","updated_at":"2024-08-30T04:53:14.000Z","dependencies_parsed_at":"2024-08-18T22:26:11.978Z","dependency_job_id":"7ce95895-4d83-490c-b651-31be8de3dd2c","html_url":"https://github.com/pirogoeth/n8n-node-code-runner","commit_stats":{"total_commits":3,"total_committers":2,"mean_commits":1.5,"dds":"0.33333333333333337","last_synced_commit":"40491ab0aba11962528dcbd4040b4a5b0308d4c5"},"previous_names":["pirogoeth/n8n-node-code-runner"],"tags_count":0,"template":false,"template_full_name":"n8n-io/n8n-nodes-starter","purl":"pkg:github/pirogoeth/n8n-node-code-runner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirogoeth%2Fn8n-node-code-runner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirogoeth%2Fn8n-node-code-runner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirogoeth%2Fn8n-node-code-runner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirogoeth%2Fn8n-node-code-runner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pirogoeth","download_url":"https://codeload.github.com/pirogoeth/n8n-node-code-runner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pirogoeth%2Fn8n-node-code-runner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: 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":["bun","n8n-community-node-package","typescript","work-in-progress"],"created_at":"2024-09-25T18:29:45.710Z","updated_at":"2026-03-07T06:32:12.140Z","avatar_url":"https://github.com/pirogoeth.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](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\n## Prerequisites\n\nYou need the following installed on your development machine:\n\n* [git](https://git-scm.com/downloads)\n* Node.js and pnpm. Minimum version Node 18. 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  pnpm 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 `pnpm 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 `pnpm lint` to check for errors or `pnpm 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%2Fpirogoeth%2Fn8n-node-code-runner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpirogoeth%2Fn8n-node-code-runner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpirogoeth%2Fn8n-node-code-runner/lists"}