Package Information
Available Nodes
Documentation
n8n-nodes-your-wechat-send (minimal)
A minimal n8n community node that calls your /sendText service.
Installation
Method 1: Direct installation in n8n
- Open n8n
- Go to "Settings" > "Community Nodes"
- Click "Install"
- Enter
n8n-nodes-your-wechat-send - Click "Install"
Method 2: Local development installation
# Clone or download this repository
git clone https://github.com/your-username/n8n-nodes-your-wechat-send.git
cd n8n-nodes-your-wechat-send
# Install dependencies
npm install
# Build the project
npm run build
Loading into n8n (for local development)
Copy the entire package (at least containing
package.jsonanddist/) to:- Windows:
C:\Users\<YOU>\.n8n\custom\n8n-nodes-your-wechat-send\ - macOS/Linux:
~/.n8n/custom/n8n-nodes-your-wechat-send/
- Windows:
Or set the environment variable
N8N_CUSTOM_EXTENSIONSto point to a directory, and place this package'sdist/folder there.Restart n8n
Search for "Your WeChat Send" in the nodes panel
Credentials
- Base URL:
http://localhost:3000(Usehttp://host.docker.internal:3000if running n8n in Docker) - API Key: Your service's
API_KEYfrom the.envfile
Usage
- Add the "Your WeChat Send" node to your workflow
- Configure the credentials with your service's Base URL and API Key
- Set the "To" and "Text" parameters
- Execute the workflow
Development
To make changes to this node:
- Modify the source code in the
src/directory - Run
npm run buildto compile the changes - Restart n8n to load the updated node
License
MIT License
Copyright (c) 2025 YOU
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.