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

v1.0.1

Published

n8n custom node untuk integrasi dengan Biteship API

Readme

n8n-nodes-biteship

npm version npm downloads GitHub license

Biteship Custom Node Banner

Custom node n8n untuk integrasi dengan Biteship API, platform pengiriman Indonesia.

Fitur

  • Courier Management: Dapatkan daftar kurir yang tersedia
  • Rate Checking: Cek tarif pengiriman untuk berbagai kurir
  • Order Management: Buat dan kelola pesanan pengiriman
  • Tracking: Lacak status pengiriman real-time

Instalasi

🎯 Install via Community Nodes (Recommended)

  1. Buka n8n di browser
  2. Masuk ke SettingsCommunity Nodes
  3. Klik "Install a community node"
  4. Masukkan package name: n8n-nodes-biteship
  5. Klik "Install"
  6. Restart n8n jika diminta

📦 Install via npm

# Global installation
npm install -g n8n-nodes-biteship

# Or dalam project n8n
npm install n8n-nodes-biteship

🐳 Install via Docker

FROM n8nio/n8n:latest
USER root  
RUN npm install -g n8n-nodes-biteship
USER node

🛠️ Install dari Source

git clone https://github.com/Boesstom/Biteship-Custom-Node-n8n.git
cd Biteship-Custom-Node-n8n
npm install
npm run build

Prasyarat

  • Node.js (v16 atau lebih tinggi)
  • npm atau yarn
  • n8n (v0.190.0 atau lebih tinggi)

Konfigurasi

  1. API Key: Dapatkan API key dari Biteship Dashboard
  2. Environment: Pilih antara Production atau Sandbox
  3. Credentials: Tambahkan credentials di n8n dengan informasi:
    • API Key dari Biteship
    • Environment (production/sandbox)

Penggunaan

1. Courier Operations

Get All Couriers

Dapatkan daftar semua kurir yang tersedia di Biteship.

Output:

{
  "courier_code": "jne",
  "courier_name": "JNE",
  "courier_service_name": "REG",
  "description": "Layanan Reguler",
  "service_type": "standard",
  "shipping_type": "parcel",
  "shipment_duration_range": "1-2",
  "shipment_duration_unit": "days"
}

2. Rate Operations

Check Rates

Cek tarif pengiriman untuk berbagai kurir.

Input Parameters:

  • Origin Postal Code (required)
  • Destination Postal Code (required)
  • Couriers (multiselect)
  • Items (collection)

Output:

{
  "courier_code": "jne",
  "courier_service_code": "REG",
  "courier_service_name": "Layanan Reguler",
  "price": 15000,
  "type": "parcel"
}

3. Tracking Operations

Track Shipment

Lacak status pengiriman menggunakan waybill ID.

Input Parameters:

  • Waybill ID (required)
  • Courier Code (required)

Output:

{
  "status": "delivered",
  "waybill_id": "12345678901234567890",
  "courier": {
    "code": "jne",
    "name": "JNE"
  },
  "history": [
    {
      "note": "Paket telah diterima",
      "updated_at": "2023-12-01T10:00:00Z",
      "status": "delivered"
    }
  ]
}

Development

Setup Development Environment

# Clone repository
git clone https://github.com/biteship/n8n-nodes-biteship.git
cd n8n-nodes-biteship

# Install dependencies
npm install

# Build project
npm run build

# Run in development mode
npm run dev

Project Structure

├── credentials/
│   └── BiteshipApi.credentials.ts    # API credentials
├── nodes/
│   └── Biteship/
│       ├── Biteship.node.ts         # Main node implementation
│       └── biteship.svg             # Node icon
├── package.json                     # Package configuration
├── tsconfig.json                   # TypeScript configuration
└── README.md                       # Documentation

Build Commands

npm run build      # Build TypeScript and copy assets
npm run dev        # Watch mode for development
npm run lint       # Run ESLint
npm run format     # Format code with Prettier

Testing

Manual Testing

  1. Import node ke n8n instance
  2. Buat workflow baru
  3. Tambahkan node Biteship
  4. Konfigurasi credentials
  5. Test berbagai operasi

Unit Testing

npm test

Troubleshooting

Common Issues

  1. Authentication Error

    • Pastikan API key valid
    • Cek environment setting (production vs sandbox)
  2. Rate Limit

    • Biteship API memiliki rate limit
    • Tambahkan delay antar request jika diperlukan
  3. Invalid Postal Code

    • Pastikan format kode pos benar (5 digit)
    • Cek ketersediaan layanan di area tersebut

Contributing

  1. Fork repository
  2. Buat feature branch
  3. Commit changes
  4. Push ke branch
  5. Buat Pull Request

License

MIT License - lihat file LICENSE untuk detail.

Support

  • Email: [email protected]
  • Documentation: https://biteship.com/id/docs/intro
  • GitHub Issues: https://github.com/biteship/n8n-nodes-biteship/issues

Changelog

v1.0.0

  • Initial release
  • Support untuk courier, rate, order, dan tracking operations
  • Dokumentasi lengkap
  • Error handling yang robust