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 🙏

© 2025 – Pkg Stats / Ryan Hefner

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

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)

  1. Go to Settings > Community Nodes in n8n
  2. Select Install a community node
  3. Enter n8n-nodes-tiiny-host in the npm Package Name
  4. 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-host

For 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-host

Operations

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:

  1. Go to Credentials in n8n
  2. Click Create New and select Tiiny API
  3. Enter your API key from Tiiny Host
  4. Click Save

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested against n8n version: 1.68.0

Usage

Example: Upload a Website

  1. Add a Read Binary File node to read your HTML file or ZIP archive
  2. Add the Tiiny node
  3. Select the Create Site operation
  4. 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
  5. Execute the workflow
  6. The node will return the live URL of your site

Example: Update an Existing Site

  1. Get the binary file you want to upload (using Read Binary File or HTTP Request node)
  2. Add the Tiiny node
  3. Select the Update Site operation
  4. 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
  5. Execute the workflow
  6. Your site will be updated with the new content

Example: Delete a Site

  1. Add the Tiiny node
  2. Select the Delete Site operation
  3. Configure:
    • Site Link: The full URL of the site to delete (e.g., my-site.tiiny.site)
  4. Execute the workflow
  5. The site will be permanently deleted

Resources

Support

If you have any issues or questions:

License

MIT

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