This is an n8n community node that provides EdgeOne Pages HTML deployment functionality.
- EdgeOne Pages HTML Deploy: Deploy HTML content to EdgeOne Pages and get shareable URLs
Follow the installation guide in the n8n community nodes documentation.
Deploy HTML content to EdgeOne Pages and receive a shareable URL.
- HTML Content: The HTML content to deploy (required)
- Type: String (multiline text area)
- Default:
<html><body><h1>Hello, World!</h1></body></html>
The node returns the following data:
{
"key": "ypUeQyo77-_j2ujrhhXSE",
"url": "https://mcp.edgeone.site/share/ypUeQyo77-_j2ujrhhXSE",
"originalHtml": "<html><body><h1>Hello, World!</h1></body></html>",
"timestamp": "2024-01-01T12:00:00.000Z"
}
key
: Unique identifier for the deployed contenturl
: Shareable URL where the HTML content can be accessedoriginalHtml
: The original HTML content that was deployedtimestamp
: ISO timestamp of when the deployment occurred
- Add the "EdgeOne Pages HTML Deploy" node to your workflow
- Enter your HTML content in the "HTML Content" field
- Execute the workflow
- The node will return the deployment key and shareable URL
The node includes proper error handling:
- Validates that HTML content is provided
- Returns detailed error information if the deployment fails
- Supports n8n's "Continue on Fail" option
To build and test this node locally:
npm run build
npm run lint
MIT
For issues and questions, please visit the GitHub repository.