n8n-nodes-tiiny-host
v0.1.14
Published
n8n community node to interact with Tiiny Host - Upload, update, and manage your static sites
Downloads
338
Maintainers
Readme
n8n-nodes-tiiny-host
This is an n8n community node that lets you use Tiiny Host in your n8n workflows.
Tiiny Host is the simplest way to share your static website. Upload your HTML, PDF, or ZIP files and get an instant live link in seconds!
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Nodes (Recommended)
- Go to Settings > Community Nodes in n8n
- Select Install a community node
- Enter
n8n-nodes-tiiny-hostin the npm Package Name - Agree to the risks and select Install
After installing the node, you can use it like any other node. n8n displays the node in search results in the Nodes panel.
Manual Installation
To get started, install the package in your n8n root directory:
npm install n8n-nodes-tiiny-hostFor Docker-based deployments, add the following line before the font installation command in your n8n Dockerfile:
RUN cd /usr/local/lib/node_modules/n8n && npm install n8n-nodes-tiiny-hostOperations
The Tiiny Host node supports the following operations:
Create Site
- Upload HTML, PDF, or ZIP files to create a new site
- Optionally set a custom subdomain
- Enable password protection for your site
- Choose from available domain suffixes
Update Site
- Update an existing site with new files
- Maintains the same URL while replacing the content
- Automatically removes old files before uploading new ones
- Update password protection settings
Delete Site
- Permanently delete a site from Tiiny Host
- Removes all associated files and data
Credentials
To use this node, you need a Tiiny Host API key. You can obtain your API key from your Tiiny Host account settings.
Setting up credentials in n8n:
- Go to Credentials in n8n
- Click Create New and select Tiiny API
- Enter your API key from Tiiny Host
- Click Save
Compatibility
- Minimum n8n version: 1.0.0
- Tested against n8n version: 1.68.0
Usage
Example: Upload a Website
- Add a Read Binary File node to read your HTML file or ZIP archive
- Add the Tiiny node
- Select the Create Site operation
- Configure:
- Binary Property:
data(or your binary property name) - Subdomain (optional): Your desired subdomain
- Domain Suffix: Select from available options
- Password Protected: Enable if needed
- Binary Property:
- Execute the workflow
- The node will return the live URL of your site
Example: Update an Existing Site
- Get the binary file you want to upload (using Read Binary File or HTTP Request node)
- Add the Tiiny node
- Select the Update Site operation
- Configure:
- Site Link: The full URL of the site to update (e.g.,
my-site.tiiny.site) - Binary Property: The name of the binary property containing your file
- Password Protected: Update protection settings if needed
- Site Link: The full URL of the site to update (e.g.,
- Execute the workflow
- Your site will be updated with the new content
Example: Delete a Site
- Add the Tiiny node
- Select the Delete Site operation
- Configure:
- Site Link: The full URL of the site to delete (e.g.,
my-site.tiiny.site)
- Site Link: The full URL of the site to delete (e.g.,
- Execute the workflow
- The site will be permanently deleted
Resources
Support
If you have any issues or questions:
- Check the n8n forum
- Visit Tiiny Host support
- Open an issue on GitHub
License
Version History
0.1.0
- Initial release
- Create, Update, and Delete site operations
- API key authentication
- Password protection support
- Custom subdomain and domain suffix support
