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 🙏

© 2024 – Pkg Stats / Ryan Hefner

trendapi

v0.0.2

Published

Trendyol mağzaları için kullanışlı ve kolaylaştırılmış api

Downloads

9

Readme

Trendapi Kullanım Kılavuzu

Trendapi Kullanım Kılavuzu

Trendapi, Trendyol'un API'sini kullanarak siparişler, kategori bilgileri ve tedarikçi hizmet URL'leri gibi bilgilere erişmenizi sağlayan bir Node.js kütüphanesidir. Bu kütüphane, Trendyol'un API'sini kullanarak çeşitli veri işlemlerini gerçekleştirmek için basit bir arayüz sunar.

Kurulum

Bu kütüphaneyi projenize dahil etmek için aşağıdaki adımları izleyebilirsiniz:

const Trendapi = require('trendapi');

Kullanım

Yapıcı Fonksiyon

Trendapi sınıfını kullanarak bir örnek oluşturabilirsiniz. Yapıcı fonksiyon gerekli olan üç parametreyi alır:

  • SANER_API_KEY: API anahtarınız
  • SANER_SECRET_KEY: API gizli anahtarınız
  • SANER_SUPPLIER_ID: Tedarikçi kimlik numaranız

Örnek:

const api = new Trendapi('SANER_API_KEY', 'SANER_SECRET_KEY', 'SANER_SUPPLIER_ID');

Siparişleri Getir

Tüm siparişleri almak için getOrders metodunu kullanabilirsiniz:

api.getOrders().then(orders => {
    console.log(orders);
}).catch(error => {
    console.error(error.message);
});

Siparişlerin Gönderim Durumunu Getir

Belirli bir gönderim durumuna sahip siparişleri almak için getOrderShipmentStatus metodunu kullanabilirsiniz. status parametresi aşağıdaki değerleri alabilir:

  • 0: Teslim Edilmiş
  • 1: Paketleme Aşamasında

Örnek:

api.getOrderShipmentStatus(1).then(orders => {
    console.log(orders);
}).catch(error => {
    console.error(error.message);
});

Kategorileri Getir

Ürün kategorilerini almak için getCategory metodunu kullanabilirsiniz:

api.getCategory().then(categories => {
    console.log(categories);
}).catch(error => {
    console.error(error.message);
});

Kategori ID'sine Göre Özellikleri Getir

Belirli bir kategori ID'sine göre kategori özelliklerini almak için getCategoryByID metodunu kullanabilirsiniz:

api.getCategoryByID('category-id').then(categoryAttributes => {
    console.log(categoryAttributes);
}).catch(error => {
    console.error(error.message);
});

Tedarikçi Hizmet URL'lerini Getir

Tedarikçi hizmet URL'lerini almak için getSupplierServiceURL metodunu kullanabilirsiniz:

api.getSupplierServiceURL().then(supplierAddresses => {
    console.log(supplierAddresses);
}).catch(error => {
    console.error(error.message);
});

Hata Yönetimi

API çağrıları sırasında bir hata oluşursa, hata mesajı Error nesnesi içinde dönecektir. Hata mesajlarını uygun şekilde yakalayabilir ve işleyebilirsiniz.

Lisans

Bu proje MIT Lisansı altında lisanslanmıştır.