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 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-gls

v0.1.6

Published

N8N Community Nodes Package for GLS API

Readme

📦 n8n-nodes-gls: GLS Points Finder Node

NPM version License

This repository contains a custom n8n node that helps you find the nearest GLS Points based on a given Geo Coordinates and limit. The node integrates with the official GLS Parcel Shop Management API.

🚀 Features

  • Find nearby GLS Points based on Geo Coordinates
  • Limit the number of results returned
  • Easy integration with your n8n workflows

📋 Prerequisites

🔧 Installation

Setting Up Node.js with NVM

Since n8n is built on Node.js, we'll need to have the correct version installed. n8n requires Node.js version 22.15.0, and the most flexible way to manage Node.js versions is through NVM (Node Version Manager).

NVM allows us to install and switch between different Node.js versions effortlessly. To install NVM, we can use the following command:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash

After installing NVM, we can install and use the specific Node.js version that n8n requires. This approach is particularly useful if we work with multiple Node.js projects that require different versions.

nvm install v22.15.0
nvm use v22.15.0

Local Installation: Direct Integration

For developers who prefer direct installation or want to integrate n8n into an existing Node.js environment, we can install n8n globally using npm:

npm install n8n -g
npm install -g pnpm@latest-10
npx only-allow pnpm

Clone the Repository

# Clone the repository
git clone https://github.com/GLS-IT-Service/n8n-nodes-gls.git n8n-nodes-gls

# Navigate to the project directory
cd n8n-nodes-gls

# Install dependencies
pnpm install

📁 Project Structure

The project is organized as follows:

n8n-nodes-gls/
├── credentials/
│   └── PsmApi.credentials.ts   # API credentials configuration
├── nodes/
│   └── Gls/
│       ├── Gls.node.ts         # Main node implementation
│       ├── GenericFunctions.ts # Shared utility functions
│       └── gls.png             # Node icon
├── index.ts                    # Main entry point
├── package.json                # Project metadata and dependencies
└── tsconfig.json               # TypeScript configuration

🛠️ Development

Building the Node

To build the node, run:

# Build the node
pnpm run build

This compiles the TypeScript code and copies the icon files to the dist directory.

Running Tests (not implemented)

pnpm test

📦 Deployment

n8n supports custom nodes through the custom extensions directory. To deploy your node:

1. Create a Custom Extensions Directory

mkdir -p ~/.n8n/custom/n8n-nodes-gls

2. Copy the Built Node

cp -R dist/* ~/.n8n/custom/n8n-nodes-gls

3. Configure n8n

# Set environment variables for n8n
export N8N_CUSTOM_EXTENSIONS="~/.n8n/custom"
# For development purposes only
export N8N_SECURE_COOKIE=false
# Link your node to n8n
pnpm link

# In your n8n installation directory (~/.n8n/custom)
pnpm link n8n-nodes-gls

4.Restart n8n

Restart your n8n instance for the changes to take effect.

🔌 Usage

  1. In your n8n workflow, add a new node and search for "GLS Point"
  2. Configure the node with your API credentials
  3. Enter the required parameters (address, country code, results limit)
  4. Execute the workflow to retrieve nearby GLS Points

📄 License

This project is licensed under the MIT License.

👥 Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to the project.