Package Information
Downloads: 1 weekly / 7 monthly
Latest Version: 1.0.0
Author: Sergei
Available Nodes
Documentation
n8n-nodes-sergei
This is an n8n community node called "Sergei". It provides custom functionality for n8n workflows.
Features
The Sergei node supports two main operations:
1. Process Text
Transform text in various ways:
- Uppercase: Convert text to uppercase
- Lowercase: Convert text to lowercase
- Reverse: Reverse the text
2. Generate Message
Generate different types of messages:
- Greeting: Generate a welcome message
- Farewell: Generate a goodbye message
- Custom: Create your own custom message
Installation
Community Nodes (Recommended)
- Go to Settings > Community Nodes in your n8n instance
- Select Install
- Enter
n8n-nodes-sergeiin the Enter npm package name field - Click Install
Manual Installation
- Navigate to your n8n installation directory (usually
~/.n8n/custom/) - Clone or download this repository
- Run
npm installto install dependencies - Run
npm run buildto build the node - Restart n8n
Local Development
If you want to develop this node locally:
# Clone the repository
cd /path/to/custom-node
# Install dependencies
npm install
# Build the node
npm run build
# Link to n8n (in development)
npm link
cd ~/.n8n/custom
npm link n8n-nodes-sergei
Usage
- Add the Sergei node to your workflow
- Select an operation:
- Process Text: Transform text data
- Generate Message: Create custom messages
- Configure the parameters based on your selected operation
- Connect it to other nodes in your workflow
Example Workflows
Example 1: Text Transformation
- Use a Webhook node to receive text input
- Connect to Sergei node with "Process Text" operation
- Select transformation type (uppercase, lowercase, or reverse)
- Output the transformed text
Example 2: Message Generation
- Add Sergei node at the start of your workflow
- Select "Generate Message" operation
- Choose message type or create a custom message
- Use the output in subsequent nodes
Development
To modify this node:
# Watch for changes during development
npm run dev
# Format code
npm run format
# Lint code
npm run lint
# Fix linting issues
npm run lintfix
Resources
License
Version History
1.0.0
- Initial release
- Process Text operation (uppercase, lowercase, reverse)
- Generate Message operation (greeting, farewell, custom)