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-filechanger

v0.1.0

Published

n8n community node for FileChanger document/audio/video conversion

Readme

n8n-nodes-filechanger

An n8n community node for FileChanger. Convert documents, audio, and video from within your n8n workflows.

Operations

| Operation | Description | |-----------|-------------| | Convert a File | POST a binary file to /api/convert (multipart). Returns the converted file as binary output. | | List Formats | GET /api/formats. Returns the supported input_formats and output_formats arrays. |

Credential setup

  1. In n8n go to Credentials → New → FileChanger API.
  2. Fill in:
    • Base URL: https://filechanger.io (default). Override this for self-hosted or staging instances.
    • API Key: your FileChanger API key, sent as the X-Api-Key request header.
  3. Click Test. It calls GET {baseUrl}/api/formats and expects a 200 response.

Note: https://filechanger.io/api/* returns 404 until the FileChanger foundation service is deployed. Use a local or staging instance for credential testing until then.

Installing for local testing

Build the package first, then point n8n at this directory via the N8N_CUSTOM_EXTENSIONS env var:

# from this directory
npm install
npm run build

# launch n8n with this node loaded
N8N_CUSTOM_EXTENSIONS="$(pwd)" npx n8n

n8n picks up the n8n block in package.json and registers the node and credential automatically. The node appears under the FileChanger name in the node picker.

Manual end-to-end test

Requirements: a running FileChanger instance (local or staging) and an API key.

  1. Start n8n as above.
  2. Create a workflow:
    • Read Binary File node (or any node that produces a binary) → FileChanger (Convert a File).
    • Set Base URL in the credential to your running instance (e.g. http://localhost:8080).
    • Set From Format / To Format using the dynamic dropdowns (loaded from /api/formats).
    • Connect a Write Binary File node to save the output.
  3. Execute the workflow and verify the output file is the converted result.

Publishing to npm

Once the package is ready for general use, publish it so n8n users can install it via Settings → Community Nodes → Install (all inside nix develop):

  1. Run the local gates: npm run build && npm run lint (both must exit 0).
  2. Bump version in package.json if this is a new release.
  3. Publish:
npm login                  # one-time, needs an npmjs.com account
npm publish --access public

The package name n8n-nodes-filechanger is what users paste into the n8n community node installer. n8n discovers community nodes by the n8n-community-node-package keyword and the n8n block already present in package.json, so no registration step beyond the npm publish is needed. Optionally, submit the published package for n8n's verified community node badge so it also appears for n8n Cloud users.