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-prestashop8

v2.1.1

Published

Nœud n8n personnalisé pour PrestaShop 8 avec support CRUD complet et conversion XML/JSON automatique

Readme

n8n PrestaShop 8 Node

npm version Downloads GitHub license GitHub issues GitHub stars

A comprehensive n8n community node for PrestaShop 8 integration with automatic XML/JSON conversion and full CRUD support.

🌍 Documentation Languages:

📚 Complete Documentation Hub

🚀 Quick Start | ✨ Features | 📚 Documentation | 🎯 Examples | 🤝 Contributing


🎯 Overview

The first n8n node that truly simplifies PrestaShop 8 integration:

  • Full CRUD operations without writing a single line of XML
  • Intuitive graphical interface with dynamic dropdown menus
  • Automatic XML/JSON conversion - PrestaShop XML ↔ Simple JSON
  • 25+ resources supported: products, customers, orders, stocks...
  • Advanced filtering with 10 search operators
  • Raw mode for debugging and advanced use cases

🚀 Quick Start

Installation

npm install n8n-nodes-prestashop8

PrestaShop Configuration

  1. Enable Webservice: Settings > Web Service > Enable
  2. Create API Key with CRUD permissions
  3. Note the URL: https://your-store.com/api

n8n Configuration

// PrestaShop 8 API Credentials
{
  "baseUrl": "https://your-store.com/api",
  "apiKey": "YOUR_API_KEY"
}

First Workflow

// List active products
{
  "resource": "products",
  "operation": "search",
  "filters": {
    "filter": [
      { "field": "active", "operator": "=", "value": "1" }
    ]
  }
}

✨ Features

🔄 Complete CRUD Operations

| Operation | Description | Example | |-----------|-------------|---------| | List | Retrieve collections | All products | | Get by ID | Individual retrieval | Product ID 123 | | Search | Search with filters | Products > €20 | | Create | Create new entities | New customer | | Update | Modify existing | Update stock | | Delete | Remove entities | Delete order |

📊 Supported Resources

  • customers - Store customers
  • addresses - Shipping/billing addresses
  • groups - Customer groups and pricing
  • customer_threads - Customer service conversations
  • customer_messages - Individual messages
  • guests - Non-registered visitors
  • products - Product catalog
  • combinations - Product variations (size, color...)
  • stock_availables - Stock management
  • categories - Category tree
  • manufacturers - Brands and manufacturers
  • suppliers - Suppliers
  • tags - Product tags
  • product_features - Product characteristics
  • product_options - Customization options
  • orders - Store orders
  • order_details - Order line items
  • order_histories - Status change history
  • order_states - Possible order states
  • order_carriers - Carriers by order
  • order_invoices - Invoices
  • carts - Shopping carts
  • cart_rules - Discount codes and promotions

🔍 Advanced Filtering

| Operator | Description | Example | |----------|-------------|---------| | = | Equal | price = 19.99 | | != | Not equal | active != 0 | | > / >= | Greater than | stock > 10 | | < / <= | Less than | price <= 50 | | LIKE | Contains | name LIKE %iPhone% | | NOT LIKE | Does not contain | ref NOT LIKE %OLD% | | BEGINS | Starts with | name BEGINS Apple | | ENDS | Ends with | ref ENDS -2024 |

🎛️ Advanced Options

  • Pagination: limit=20 or limit=10,30
  • Sorting: [price_ASC], [date_add_DESC]
  • Fields: full, minimal, or custom
  • Debug: URL, headers, timeout

🎯 Usage Examples

E-commerce Automation

// Daily ERP → PrestaShop stock sync
Cron → ERP API → Transform → PrestaShop 8 Node → Slack Alert

Marketing Automation

// New customers → CRM + welcome email
PrestaShop Webhook → PrestaShop 8 Node → CRM → Mailchimp

Business Intelligence

// Daily sales report
Cron → PrestaShop 8 Node → Calculate KPIs → Email Report

📚 Documentation

🐛 Issues & Support

Common Problems

  • 401 Unauthorized → Check API key and permissions
  • 404 Not Found → Verify base URL and Webservices enabled
  • Timeout → Increase timeout in debug options

Get Help

🤝 Contributing

Contributions are welcome! Here's how to participate:

Quick Start Development

git clone https://github.com/PPCM/n8n-nodes-prestashop8.git
cd n8n-nodes-prestashop8
npm install
npm run dev  # Watch mode

Contribution Process

  1. Fork the project
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit changes (git commit -m 'Add amazing feature')
  4. Push the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Types of Contributions

  • 🐞 Bug fixes
  • New features
  • 📚 Documentation improvements
  • 🧪 Additional tests
  • 🎨 UI/UX improvements

Guidelines

  • TypeScript code with strict typing
  • Unit tests for new features
  • Updated documentation
  • Respect ESLint + Prettier

📊 Roadmap

v1.1 (Q1 2024)

  • [ ] Intelligent caching to optimize API calls
  • [ ] Pre-configured workflow templates
  • [ ] Bulk operations for batch processing
  • [ ] Integrated PrestaShop webhooks

v1.2 (Q2 2024)

  • [ ] PrestaShop Cloud support
  • [ ] Advanced multi-store
  • [ ] Visual field mapping
  • [ ] Performance metrics

v2.0 (Q3 2024)

  • [ ] GraphQL support (if available in PrestaShop)
  • [ ] AI-powered data transformation
  • [ ] Real-time synchronization
  • [ ] Advanced analytics dashboard

📄 License

This project is licensed under the MIT License. See the LICENSE file for details.

🙏 Acknowledgments

  • n8n Team for the fantastic automation tool
  • PrestaShop Community for API documentation
  • Contributors who improve this project

🌟 Star History

Star History Chart


Revolutionize your e-commerce with n8n and PrestaShop 8 🚀

⬆ Back to top