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-n8nparameter-input

v2.0.1

Published

A custom n8n node for parameter input with bilingual support

Readme

n8n-nodes-parameter-input

A custom n8n node for inputting parameters with bilingual support. This node allows you to define custom parameters in English and Chinese with various data types and default values, and outputs them as a JSON object for use throughout your workflow.

Features

  • Bilingual Support: Define parameter names in both English and Chinese
  • Multiple Data Types: Supports String, Number, Boolean, Date, JSON, and Dropdown types
  • Default Values: Set default values for each parameter
  • Dynamic Parameters: Add multiple parameters (up to 20)
  • JSON Output: All parameters are output as a JSON object for easy use in subsequent nodes

Installation

n8n Cloud

  1. Go to the n8n Cloud dashboard
  2. Click on "Settings" > "Community Nodes"
  3. Add the "n8n-nodes-parameter-input" node
  4. Click "Install"

n8n Self-Hosted

npm install n8n-nodes-parameter-input

Then restart n8n.

Usage

  1. Drag and drop the "Parameter Input" node into your workflow
  2. Set the number of parameters you want to define
  3. For each parameter:
    • Enter the English name (used as the JSON key)
    • Enter the Chinese name (for display only)
    • Select the parameter type
    • Enter a default value
  4. Connect the node to other nodes in your workflow
  5. The parameter values will be available as $json.parameterName in subsequent nodes

Parameter Types

| Type | Description | |------|-------------| | String | A text string | | Number | A numeric value | | Boolean | True/false value | | Date | A date and time value | | JSON | A JSON object or array | | Dropdown | A dropdown selection (requires additional configuration) |

Example Output

If you define two parameters:

  • English name: "apiKey", Chinese name: "API密钥", Type: String, Value: "1234567890"
  • English name: "userId", Chinese name: "用户ID", Type: Number, Value: 1234

The output will be:

{
  "apiKey": "1234567890",
  "userId": 1234
}

Configuration

Parameter Count

The number of parameters to define (1-20).

Parameter Fields

Each parameter has the following fields:

Parameter Name (English)

The English name of the parameter. This will be used as the key in the output JSON object. It's recommended to use camelCase or snake_case for compatibility.

Parameter Name (Chinese)

The Chinese name of the parameter. This is for display purposes only and will not be included in the output JSON.

Parameter Type

The data type of the parameter. See "Parameter Types" section for details.

Parameter Value

The default value of the parameter. The format depends on the parameter type.

Version History

  • 2.0.0: Initial release