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

v0.7.0

Published

n8n nodes for the object-storage (S3/MinIO) variant of IFC Pipeline. Requires USE_OBJECT_STORAGE=true on the target deployment; legacy filesystem deployments are no longer supported.

Readme

Banner image

n8n-nodes-ifcpipeline

This is an n8n community node that lets you use IfcPipeline in your n8n workflows.

IfcPipeline provides tools for working with Industry Foundation Classes (IFC) files in Building Information Modeling (BIM) workflows, enabling automation of IFC data processing and analysis.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources

Installation

Requirements

  • Self-hosted n8n instance (community nodes are not available on n8n Cloud)
  • n8n version 0.214.0 or newer
  • IfcPipeline

Bundled installation

This node comes pre-installed with IfcPipeline. For custom setups, see GUI Installation or Manual isntallation below.

GUI Installation (Recommended)

  1. Open your n8n instance
  2. Go to Settings > Community Nodes
  3. Click Install
  4. Enter n8n-nodes-ifcpipeline in the "Enter npm package name" field
  5. Click Install
  6. Reload your n8n instance when prompted

Manual Installation

If you can't use the GUI installation method:

  1. Navigate to your n8n user data directory:

    cd ~/.n8n
  2. If it doesn't exist, create a custom directory:

    mkdir -p custom/nodes
  3. Install the package:

    cd custom/nodes
    npm install n8n-nodes-ifcpipeline
  4. Start or restart n8n

Operations

This package includes the following nodes:

  • IfcPipeline: Core operations including file upload/download and URL downloading
  • IfcConversion: Convert between IFC and other formats
  • IfcClash: Detect clashes between IFC models
  • IfcCsv: Import/export data between IFC and CSV formats
  • IfcToJson: Convert IFC data to JSON format
  • IfcTester: Test and validate IFC models
  • IfcDiff: Compare differences between IFC models
  • IfcQuantityTakeoff: Extract quantity information from IFC models

Credentials

This node requires access to an IfcPipeline API gateway running with USE_OBJECT_STORAGE=true (the S3/MinIO-backed variant of ifcpipeline — there is no filesystem fallback from 0.7.0 onwards). The credential exposes:

  • Base URL: The base URL for your IfcPipeline API gateway (e.g. http://api-gateway inside Docker, or https://ifcpipeline.example.com).
  • API Key: Your IFC_PIPELINE_API_KEY.

The credential Test hits /health so mis-pointed deployments (e.g. a legacy filesystem-only gateway) are flagged early.

Usage

After installation, the IfcPipeline nodes will be available in the nodes panel under "IfcPipeline". You can search for "IFC" to find all related nodes.

Object-storage model

All file references are S3 object keys under the configured bucket. Legacy leading slashes and s3://bucket/... URIs are tolerated by the gateway, but the canonical form is a bare key:

| Purpose | Example key | |--------------------------|-------------------------------------------------| | Uploaded inputs | uploads/Building-Architecture.ifc | | ifccsv export | output/csv/Building-Architecture_export.csv | | ifccsv import (updated IFC) | output/ifc_updated/Building-Architecture_updated.ifc | | ifctester report | output/ids/validation_report.html | | ifcdiff report | output/diff/comparison_report.json | | ifcclash report | output/clash/report.json | | ifc2json output | output/json/Building-Architecture.json | | ifcconvert output | output/converted/Building-Architecture.glb | | ifcpatch output | output/patch/Building-Architecture_patched.ifc| | ifc5d (QTO) output | output/qto/Building-Architecture_with_qtos.ifc|

Typical workflow steps:

  1. Upload: the IfcPipeline → Upload File operation streams the file straight into MinIO and returns { storage: "s3", bucket, object_key, object_url, file_path, storage_ref }. storage_ref is the canonical, bucket-relative key downstream worker nodes should consume.
  2. Process: wire storage_ref (or any upstream worker's result.output_key) into the next node's filename / input_file / input_filename parameter. No prefixes, no mount paths.
  3. Inspect / download: worker jobs return { output_key, output_path: "s3://…/…" }. IfcPipeline → Download File produces a token via /create_download_link and follows the resulting 307 redirect to a presigned MinIO URL transparently.

The path-picker dropdown in each node queries /list_directories, which the object-storage gateway backs with a paginated list_objects_v2 over the bucket — so both fresh uploads and worker outputs show up automatically.

Resources

Acknowledgement

This project would not have been possible without the incredible work done by the IfcOpenShell project. Their dedication to creating an open-source IFC parser and toolkit has enabled the development of this node package. We would like to extend our gratitude to the entire IfcOpenShell team for their contributions to the IFC ecosystem.

License

MIT