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

ruangapi-nodejs

v0.1.1

Published

Un-Official RuangAPI Library for NodeJS

Downloads

1

Readme

RuangAPI NodeJS

1. Tentang

RuangAPI NodeJS merupakan package un-official dari ruangapi.com yang dapat digunakan developer untuk mengambil data wilayah mencakup provinsi, kota atau kabupaten, dan kecamatan, untuk melakukan cek ongkos kirim, dan melakukan cek resi atau waybill pada beberapa kurir. Package ini masih dalam tahap pengembangan dan akan terus di update. Jika ada bug atau error silahkan di issue atau kontak [email protected]

2. Installation

2.1 Pre-required

1. NodeJS versi 4 ke atas
2. API dari RuangAPI (bisa mendaftar di https://ruangapi.com/)

2.2 Installation

Package ruangapi-nodejs membutuhkan NPM (Node Package Manager), jika anda belum menginstallnya, silahkan install npm terlebih dahulu, lalu lakukan cara di bawah ini supaya package tersimpan di file package.json

$ npm install --save ruangapi-nodejs

3. Penggunaan

RuangAPI memiliki beberapa endpoint yaitu ongkir, search engine, marketplace, wilayah, currency, penduduk. Di versi kali ini baru dirilis untuk cek ongkir (include get wilayah dan cek resi)

Ongkir

var RuangApi = require("ruangapi-nodejs").Ongkir('apikey');

RuangAPI.getProvinces().then((res) => {
    //respon sukses
}).catch((err) => {
    //respon gagal
})

Beberapa fitur antara lain:

  • getProvinces() untuk menampilkan semua provinsi
  • getProvince(id_provinsi) untuk menampilkan detail provinsi by id_provinsi
  • getCity(id_provinsi) untuk menampilkan kota/kabupaten berdasarkan id_provinsi
  • searchCity(query) untuk menampilkan kota/kabupaten berdasarkan query
  • getDistrict(id_city) untuk menampilkan kecamatan berdasarkan id_city
  • searchDistrict(query) untuk menampilkan kecamatan berdasarkan query
  • getJNECost(origin, destination, weight) untuk menampilkan ongkir JNE origin = id_city, destination = id_district, weight = berat (gram)
  • getJNTCost(origin, destination, weight) untuk menampilkan ongkir JNT origin = id_city, destination = id_district, weight = berat (gram)
  • getPOSCost(origin, destination, weight) untuk menampilkan ongkir POS (Not available) origin = id_city, destination = id_district, weight = berat (gram)
  • getTikiCost(origin, destination, weight) untuk menampilkan ongkir Tiki origin = id_city, destination = id_district, weight = berat (gram)
  • getLionCost(origin, destination, weight) untuk menampilkan ongkir Lion origin = id_city, destination = id_district, weight = berat (gram)
  • getNinjaCost(origin, destination, weight) untuk menampilkan ongkir Ninja express (Not available) origin = id_city, destination = id_district, weight = berat (gram)
  • getWahanaCost(origin, destination, weight) untuk menampilkan ongkir Wahana (Not available) origin = id_city, destination = id_district, weight = berat (gram)
  • getSicepatCost(origin, destination, weight) untuk menampilkan ongkir sicepat origin = id_city, destination = id_district, weight = berat (gram)
  • getAlfatrexCost(origin, destination, weight) untuk menampilkan ongkir Alfatrex origin = id_city, destination = id_district, weight = berat (gram)
  • getPCPCost(origin, destination, weight) untuk menampilkan ongkir PCP origin = id_city, destination = id_district, weight = berat (gram)
  • getSAPCost(origin, destination, weight) untuk menampilkan ongkir SAP origin = id_city, destination = id_district, weight = berat (gram)
  • getJNEWaybill(waybill) untuk cek resi JNE
  • getJNTWaybill(waybill) untuk cek resi JNT
  • getPOSWaybill(waybill) untuk cek resi POS (Not available)
  • getTikiWaybill(waybill) untuk cek resi Tiki
  • getLionWaybill(waybill) untuk cek resi Lion
  • getNinjaWaybill(waybill) untuk cek resi Ninja express (Not available)
  • getWahanaWaybill(waybill) untuk cek resi Wahana (Not available)
  • getSicepatWaybill(waybill) untuk cek resi sicepat
  • getAlfatrexWaybill(waybill) untuk cek resi Alfatrex (Not available)
  • getPCPWaybill(waybill) untuk cek resi PCP (Not available)
  • getSAPWaybill(waybill) untuk cek resi SAP (Not available)