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

@nexrender/n8n-nodes-nexrender

v0.1.6

Published

Interact with nexrender API to manage rendering jobs.

Downloads

38

Readme

Banner image

n8n-nodes-nexrender

This is an n8n community node. It lets you use the Nexrender Cloud API in your n8n workflows to manage templates, render jobs, fonts, and secrets.

Nexrender is a cloud rendering platform for Adobe After Effects projects, providing API-based control for template upload, job creation, asset injection, and more.

Note that this node requires an active subscription with Nexrender Cloud. Get your trial today!

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the official guide to install community nodes in n8n:

https://docs.n8n.io/integrations/community-nodes/installation/

Package name: @nexrender/n8n-nodes-nexrender

Operations

The node exposes the following resources and operations:

  • Template

    • Create: POST /templates — register a template and get upload info
    • List: GET /templates — list templates for your team
    • Get: GET /templates/{id} — get template details
    • Update: PATCH /templates/{id} — update display name
    • Delete: DELETE /templates/{id} — delete a template
    • Get Download URL: GET /templates/{id}/upload — presigned URL to download the raw file
    • Get Upload URL: PUT /templates/{id}/upload — fresh presigned upload URL
  • Job

    • Create: POST /jobs — create a render job with template, assets, settings, upload + webhook
    • List: GET /jobs — supports filters: minimal, from, limit, from_date, to_date, states, exclude_states, sort, tags
    • Get: GET /jobs/{id} — job details, progress, stats, output URL
    • Wait For Job (separate node): polls a job ID until status is finished or error
  • Font

    • Upload: POST /fonts — upload a TTF font (multipart/form-data)
    • List: GET /fonts — list fonts
    • Get: GET /fonts/{id} — get font metadata
    • Delete: DELETE /fonts/{id} — delete a font
  • Secret

    • List: GET /secrets — list secrets (values not returned)
    • Create: PUT /secrets — create/update secret (name + value)
    • Delete: DELETE /secrets/{id} — delete a secret

Credentials

Credential: “Nexrender API”

  • API Token (required): Bearer token used to authenticate. You can generate a token in the Nexrender app: https://app.nexrender.com/team/settings
  • Base URL (optional): Defaults to https://api.nexrender.com/api/v2. Override for on-prem environments.

Compatibility

  • Node.js: >= 20 (per package engines)
  • n8n: built with Nodes API v1

Usage

  1. Add the Nexrender node to your workflow and select a Resource and Operation.

  2. Set up “Nexrender API” credentials with your team API token.

  3. Typical flows:

  • Upload a new template

    • Operation: Template → Create (returns upload info)
    • Use the returned upload info to upload your file (via HTTP Request or custom logic)
  • Render a job

    • Operation: Job → Create
    • Provide the Job body including template.id, assets, optional settings, webhook and upload configuration
    • Optionally add “Nexrender: Wait For Job” node after Create to block until completion
  • Monitor a job

    • Operation: Job → Get with jobId, or use Job → List with filters
  • Manage fonts

    • Operation: Font → Upload (multipart/form-data with TTF)
    • Then reference fonts by file name in your job payload if needed

Resources

  • n8n community nodes docs: https://docs.n8n.io/integrations/#community-nodes
  • Nexrender Cloud product site: https://nexrender.com/
  • Generate an API token: https://app.nexrender.com/team/settings

Version history

  • 0.1.0 — Initial release: Templates, Jobs, Fonts, Secrets operations