n8n-nodes-insforge
v0.1.0
Published
n8n community node for InsForge database operations
Maintainers
Readme
n8n-nodes-insforge
This is an n8n community node for InsForge - a Backend-as-a-Service platform with PostgreSQL database.
Installation
In n8n (Recommended)
- Go to Settings > Community Nodes
- Click Install a community node
- Enter
n8n-nodes-insforge - Click Install
Manual Installation
npm install n8n-nodes-insforgeCredentials
You need to configure InsForge API credentials:
| Field | Description |
|-------|-------------|
| Base URL | Your InsForge backend URL (e.g., https://your-app.region.insforge.app) |
| API Key | Your InsForge API key |
Operations
Row Resource
| Operation | Description | |-----------|-------------| | Get | Get a single row by ID | | Get Many | Get multiple rows with optional filters | | Create | Create a new row | | Update | Update an existing row | | Delete | Delete a row |
Get Many Options
- Select Columns - Specify which columns to return (comma-separated)
- Order By - Sort results by column (append
.descfor descending) - Filters - Add conditions to filter results
Filter Operators
| Operator | Description |
|----------|-------------|
| eq | Equals |
| neq | Not equals |
| gt | Greater than |
| gte | Greater than or equal |
| lt | Less than |
| lte | Less than or equal |
| like | Pattern match (case sensitive) |
| ilike | Pattern match (case insensitive) |
| is | Is null/true/false |
| in | In list of values |
Development
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Lint code
npm run lint