npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-ovhcloud

v1.1.0

Published

n8n nodes for OVH Cloud services

Readme

n8n-nodes-ovhcloud

n8n Nodes Base License: MIT

n8n-nodes-ovhcloud is a community node for n8n that enables seamless integration with OVHcloud APIs. Manage OVHcloud services — web hosting, dedicated services, and more — all from within your n8n workflows.

Note: n8n is a workflow automation platform released under the FairCode license.


📚 Documentation

| Resource | Link | | ---------------------------- | -------------------------------------------------------------------------- | | Getting Started | docs/guides/getting-started.md | | Authentication Guide | docs/guides/authentication-guide.md | | Workflow Examples | docs/guides/examples.md | | Troubleshooting | docs/guides/troubleshooting.md | | API Reference (V1) | docs/api-reference/v1/_index.md | | API Reference (V2) | docs/api-reference/v2/_index.md | | Full Documentation Index | docs/README.md |


Features

API Coverage

  • Web Hosting — manage web hosting services via /hosting/web API
  • Services — manage OVHcloud services via /service API
  • Multi-endpoint support: OVH Europe, Canada, USA, SoYouStart, Kimsufi
  • SHA1 signature authentication for secure API requests
  • Dynamic list selection — auto-populate dropdowns with live data

Available Nodes

| Node | Description | Operations | | --------------------- | ----------------------------------------------------- | ---------- | | OVH Cloud Hosting Web | Manage web hosting services (databases, domains, crons, users, SSL, etc.) | 25 | | OVH Cloud Service | Manage OVHcloud services (get, list, renews, reopen, suspend, terminate, update) | 8 |

Web Hosting Operations

| Category | Operations | | ------------------- | ---------- | | General | Get, List, Find by Domain | | Attached Domains | List attached domains, Get attached domain | | Databases | List databases, Get database | | Crons | List crons, Get cron | | Users | List users, Get user | | Tasks | List tasks | | Modules | List modules, Get module | | Runtimes | List runtimes | | Emails | Get email | | Env Vars | List env vars, Get env var | | SSL | Get SSL | | Service Infos | Get service infos |

Service Operations

| Operation | Description | | ------------- | ------------------------------------------ | | Get | Get service details | | List | List all services | | List Renews | List possible renews for a service | | Reopen | Reopen a terminated service | | Suspend | Suspend a service | | Terminate | Terminate a service | | Update | Update service configuration |


Quick Start

1. Install

# Via n8n UI: Settings > Community Nodes > Install > n8n-nodes-ovhcloud
# Or manually:
npm install n8n-nodes-ovhcloud

2. Configure

  1. Create API credentials at auth.eu.ovhcloud.com/api/createToken
  2. Add OVH API credentials in n8n (Application Key, Application Secret, Consumer Key)
  3. Choose your endpoint (Europe, Canada, USA, SoYouStart, Kimsufi)

See the full authentication guide for detailed steps.

3. Use

Add the OVH Cloud node to your workflow, select a resource and operation, and you're done.

See workflow examples for common use cases.


Development

git clone https://github.com/ziouf/n8n-nodes-ovhcloud.git
cd n8n-nodes-ovhcloud
npm install
npm run build
npm run dev          # Development mode with hot reload
npm run lint         # Check code quality
npm run lint:fix     # Auto-fix linting issues

Testing

npm test

Project Structure

n8n-nodes-ovhcloud/
├── credentials/
│   └── OvhCloudApi.credentials.ts      # OVH API credential type
├── nodes/
│   ├── OvhCloudHosting/                # Web Hosting node (25 operations)
│   │   ├── OvhCloudHosting.node.ts      # n8n node class
│   │   ├── index.ts                    # description() + execute() router
│   │   └── *.operation.ts              # operation implementations
│   ├── OvhCloudService/                # Service node (8 operations)
│   │   ├── OvhCloudService.node.ts      # n8n node class
│   │   ├── index.ts                    # description() + execute() router
│   │   └── *.operation.ts              # operation implementations
│   └── shared/
│       ├── transport/                   # API client & authentication
│       │   ├── ApiClient.ts             #   abstract interface
│       │   ├── ApiClientImpl.ts         #   HTTP implementation
│       │   └── CredentialHolder.ts      #   OVH SHA1 signature
│       └── constants.ts
├── scripts/
│   ├── generate-node.sh                 # Scaffold a new node
│   ├── gen-api-docs.sh                  # Generate API documentation
│   └── get-api-description.sh           # Fetch OVH API specs
├── tests/                               # Unit tests
├── docs/
│   ├── README.md                        # Documentation index
│   ├── guides/                          # User-facing guides
│   ├── api-reference/                   # Categorized API documentation
│   └── api-specs/                       # Raw OVH API JSON specifications
├── icons/                               # Node icons
└── package.json

Contributing

Contributions welcome! See our development guidelines and follow Conventional Commits for commit messages.

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/your-feature
  3. Make your changes, run npm run lint:fix && npm test
  4. Commit and push: git commit -m "feat: add your feature"
  5. Open a Pull Request

License

MIT — Copyright (c) 2026 Cyril MARIN


Resources


Found this node useful? 🌟 Star the repository on GitHub!