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

api-jkt48connect

v0.0.4

Published

A project to fetch and display data from an external API using Express and Axios

Downloads

198

Readme

JKT48Connect API - Automatisasi Start Server

Panduan ini menjelaskan cara menjalankan server JKT48Connect API menggunakan script otomatis. Pengguna hanya perlu menjalankan script start.sh untuk memulai server.

Langkah-langkah

1. Buat File start.sh

Untuk memulai aplikasi, pertama buat file script start.sh di direktori utama proyek Anda dengan isi berikut:

#!/bin/bash

# Masuk ke dalam direktori api-jkt48connect
cd node_modules/api-jkt48connect

# Jalankan perintah node .
node .

2. Berikan Izin Eksekusi pada File Script

Setelah file start.sh dibuat, beri izin eksekusi pada file tersebut dengan perintah:

chmod +x start.sh

3. Tambahkan API Key

Sebelum menjalankan aplikasi, Anda harus menambahkan API key Anda. Anda dapat melakukannya dengan membuka file apiKeys.js yang ada dalam direktori node_modules/api-jkt48connect/ dan menambahkan API key Anda seperti contoh berikut:

module.exports = {
    apiKey: 'YOUR_API_KEY_HERE',
    expiryDate: '2024-12-31' // Tanggal kadaluarsa API Key, sesuaikan dengan kebutuhan
};

4. Jalankan Aplikasi

Sekarang, Anda dapat menjalankan server API JKT48Connect dengan perintah berikut:

./start.sh

Perintah ini akan secara otomatis masuk ke dalam direktori node_modules/api-jkt48connect dan menjalankan server Express yang menghosting API.

5. Akses API

Setelah server berjalan, Anda dapat mengakses API melalui browser atau aplikasi pengujian API seperti Postman.

  • Endpoint API:
    • /events – Mengambil data semua event yang tersedia.
    • /theater – Mengambil data semua theater.
    • /theater/:id – Mengambil data theater berdasarkan ID.
    • /news – Mengambil berita terbaru.
    • /news/:id – Mengambil detail berita berdasarkan ID.
    • /member/:name – Mengambil data member berdasarkan nama.
    • /live – Mengambil data live yang sedang berlangsung.

Contoh endpoint: http://localhost:3000/members

Catatan

  • Pastikan Anda telah menginstal semua dependencies yang diperlukan sebelum menjalankan aplikasi.
  • Jika terjadi masalah, pastikan Anda telah memberikan izin eksekusi pada file start.sh dan telah mengikuti langkah-langkah dengan benar.

### Penjelasan:
- **API Key**: Pengguna diminta menambahkan API key pada file `apiKeys.js` di direktori modul.
- **Expiry Date**: Pengguna dapat menyesuaikan tanggal kadaluarsa API key seperti contoh yang ada.
- **Endpoint**: Menyediakan daftar 7 endpoint API yang bisa digunakan.