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

@novacodehq/n8n-nodes-servicefusion

v1.0.5

Published

ServiceFusion field service management integration for n8n

Readme

@novacodehq/n8n-nodes-servicefusion

npm version License: MIT

Self-hosted n8n community node for ServiceFusion field service management. Provides a single ServiceFusion node backed by the ServiceFusion adapter, with full CRUD and search operations across 10 resources.

Package

@novacodehq/n8n-nodes-servicefusion

Published to npm under the @novacodehq scope. Built as an n8n community node package for self-hosted n8n instances only.

Self-hosted only

This package is intended for self-hosted n8n only. It is not configured for n8n Cloud verification because it bundles the ServiceFusion adapter as a runtime dependency.

Resources & operations

| Resource | Operations | | ------------- | ----------------------------------------------------------------------- | | Customer | Get All, Get, Create, Update, Delete, Search | | Job | Get All, Get, Create, Update, Delete, Search, Get All Paged, Batch Sync | | Estimate | Get All, Get, Create, Update, Convert To Job, Search | | Invoice | Get All, Get, Create, Update, Send | | Technician | Get All, Get, Get Schedule, Assign Job | | Job Category | Get All, Get | | Job Status | Get All, Get | | Payment Type | Get All, Get | | Source | Get All, Get | | Calendar Task | Get All, Get |

Highlights

  • Customer supports expand parameters for contacts, custom fields, and locations.
  • Job includes Get All Paged (cursor-based pagination) and Batch Sync (upsert via external ID, customer ID, or description).
  • Estimate offers extensive search filters across status, dates, customer details, PO number, and more.
  • Invoice supports status filtering, date range queries, and email delivery via Send.
  • Technician covers schedule lookup and job assignment.
  • Job Category, Job Status, Payment Type, Source, and Calendar Task are read-only list/lookup resources.

Installation

From npm

npm install @novacodehq/n8n-nodes-servicefusion

Then restart your self-hosted n8n instance.

Local development

npm install
npm run build
npm run dev

Credentials

Create a ServiceFusion API credential in n8n with:

| Field | Required | Default | | ------------- | -------- | ---------------------------------- | | Client ID | Yes | — | | Client Secret | Yes | — | | Base URL | No | https://api.servicefusion.com/v1 |

The node uses the adapter's OAuth2 flow internally and validates credentials on first execution via a lightweight test call.

Compatibility

| Requirement | Notes | | -------------- | ----------------------------------------------------- | | n8n version | Modern self-hosted n8n versions using @n8n/node-cli | | Node.js | 22 LTS recommended for isolated-vm compatibility | | Package format | @n8n/node-cli community node package | | n8n cloud | Not supported — self-hosted only |

Error handling

Errors from the ServiceFusion API are enriched with:

  • HTTP status code from the failed request
  • Request details (method and URL) for debugging
  • Response body from the adapter's debug state
  • Original error message preserved in the description

The node respects n8n's continueOnFail — errors on individual items produce error JSON outputs rather than failing the entire execution when enabled.

Notes

  • This package vendors a bundled copy of the ServiceFusion adapter (nodes/ServiceFusion/vendor/servicefusion-adapter.bundle.js) at build time. This satisfies n8n's community node packaging rules while keeping the adapter as a runtime dependency.
  • The adapter is bundled via esbuild from the @rashidazarang/servicefusion-adapter npm package (aliased as @pmip/servicefusion-adapter in package.json).
  • For local development with n8n-node dev, Node.js 22 LTS is recommended for smoothest isolated-vm compatibility.

Resources

Version history

See CHANGELOG.md.

License

MIT © NovaCodeHQ