n8n-nodes-streamline
v0.3.4
Published
n8n node for the Streamline Connector API integration
Maintainers
Readme
n8n-nodes-streamline

This is an n8n community node that connects your Shopify eCommerce data to n8n through the Streamline Connector API. It enables you to retrieve products, orders, and inventory data from Shopify to automate workflows and integrate with other services.
n8n is a fair-code licensed workflow automation platform.
Installation Operations Credentials Compatibility Usage Resources Version History
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Nodes (Recommended)
For users on n8n v0.187.0+:
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-streamlinein Enter npm package name - Agree to the risks of using community nodes
- Select Install
After installation, the Streamline node will be available in your nodes panel.
Manual Installation
For self-hosted n8n instances:
cd ~/.n8n/custom
npm install n8n-nodes-streamlineRestart n8n and the Streamline node will appear in your node list.
Docker
To use this node with Docker:
docker run -it --rm \
-p 5678:5678 \
-v ~/.n8n:/home/node/.n8n \
-v ~/.n8n/custom:/home/node/custom \
-e N8N_CUSTOM_EXTENSIONS="/home/node/custom/node_modules/n8n-nodes-streamline" \
n8nio/n8nOperations
The Streamline node supports the following operations:
| Resource | Operation | Description | |----------|-----------|-------------| | Products | Get Products | Retrieve Shopify product data through Streamline | | Orders | Get Orders | Fetch recent orders and order details | | Inventory | Get Inventory | Retrieve stock levels and availability data |
Credentials
To use the Streamline node, you need to set up Streamline API credentials:
- In n8n, go to Credentials → New
- Search for and select Streamline API
- Enter your credentials:
- Streamline Shop ID – Your Streamline access key (found in the app dashboard > Any endpoint page)
- Click Save and test the connection
Once configured, select these credentials when using any Streamline node in your workflows.
Getting API Credentials
To obtain your Streamline API credentials:
- Visit Streamline Connector
- Sign up or log in to your account
- Navigate to your API settings
- Generate or copy your API key
Compatibility
- Minimum n8n version: 0.187.0
- Tested with n8n version: 1.0.0+
- Node.js version: 22+
Usage
Example Workflows
Here are some common use cases for the Streamline node:
1. Sync Orders to Google Sheets
- Trigger: Schedule (every hour)
- Streamline Node: Get Orders
- Google Sheets: Append data
- Use case: Create automated sales reports
2. Low Stock Alerts
- Trigger: Schedule (daily)
- Streamline Node: Get Inventory
- IF Node: Check if stock < threshold
- Slack/Email Node: Send alert
- Use case: Monitor inventory levels
3. Product Catalog Integration
- Trigger: Manual or Schedule
- Streamline Node: Get Products
- Your Service: Update product database
- Use case: Maintain product information across platforms
Tips
- Use the Schedule Trigger node to automate regular data syncs
- Combine with IF nodes to create conditional workflows
- Use Set nodes to transform data before sending to other services
- Enable Error Workflows to handle API errors gracefully
Resources
Support
For issues and questions:
- Node issues: GitHub Issues
- n8n help: n8n Community Forum
- Streamline API: Contact [email protected]
Development
Prerequisites
- Node.js v22 or higher
- npm
- n8n (included as dev dependency)
Setup
# Clone the repository
git clone https://github.com/streamline-connector/n8n-nodes-streamline.git
cd n8n-nodes-streamline
# Install dependencies
npm install
# Build the node
npm run buildLocal Development
Start n8n with your node loaded:
npm run devThis command:
- Builds your node with watch mode enabled
- Starts n8n with your node available
- Automatically rebuilds when you make changes
- Opens n8n in your browser at http://localhost:5678
Testing
Run linting:
npm run lintAuto-fix linting issues:
npm run lint:fixBuilding for Production
npm run buildThis compiles TypeScript code to the dist/ folder.
Version History
See CHANGELOG.md for detailed version history.
License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Made with ❤️ by Streamline Connector
