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

autoft-orkut

v0.0.1

Published

Library TypeScript untuk mengambil data mutasi QRIS dengan fitur **Anti-Deteksi** (Consistent Device ID) dan **QRIS Generator**.

Readme

AutoFT Orkut

Library TypeScript untuk mengambil data mutasi QRIS dengan fitur Anti-Deteksi (Consistent Device ID) dan QRIS Generator.

Fitur Utama

  • 🛡️ Anti-Deteksi: Menggunakan algoritma "Seed-based Device ID". Username Anda akan selalu menghasilkan ID HP, Model, dan User-Agent yang sama.
  • 🔒 Aman: Kode terdistribusi dalam bentuk ter-obfuscasi (acak).
  • ⚡ Ringan: Menggunakan axios untuk koneksi yang cepat.
  • 🖼️ QRIS Generator: Membuat QRIS dinamis dan gambar QRIS.

Instalasi

npm install autoft-orkut

Cara Penggunaan

import { MutasiClient } from 'autoft-orkut';

async function main() {
  // Ganti dengan kredensial Anda
  const username = 'username_anda';
  const token = 'userid:token_anda';

  const client = new MutasiClient(username, token);

  try {
    const result = await client.getMutasi();
    
    if (result.status) {
      console.log('Berhasil!');
      console.log(`Merchant: ${result.merchant}`);
      console.log('Data Mutasi:', result.data);
    } else {
      console.log('Gagal:', result.message);
    }
  } catch (error) {
    console.error('Error:', error);
  }
}

main();

Generate QRIS Dinamis

Anda juga bisa membuat QRIS dinamis (dengan nominal tertentu) dari QRIS statis:

import { QRIS } from 'mutasi-ts';

const qrisStatis = "00020101021126570014ID.LINKAJA...";
const nominal = 15000;

const qrisBaru = QRIS.convert(qrisStatis, nominal);
console.log(qrisBaru); // Output: QRIS string dengan nominal 15000

Generate QRIS dengan Kode Unik (Random 1-1000)

Untuk mempermudah identifikasi pembayaran, Anda bisa menambahkan kode unik acak:

const result = QRIS.convertUnique("000201...", 15000);

console.log(result.uniqueCode); // Contoh: 123
console.log(result.totalAmount); // Contoh: 15123
console.log(result.qris); // QRIS string dengan nominal 15123

Generate QRIS Image

import { QRIS } from 'mutasi-ts';
import * as fs from 'fs';

const qrisGen = new QRIS({
  baseQrString: "000201010211..."
});

// Generate QRIS Dinamis dulu
const qrisString = QRIS.convert("000201010211...", 15000);

// Buat gambar
const buffer = await qrisGen.generateQRImage(qrisString);
fs.writeFileSync('qris.png', buffer);

Struktur Data Response

interface MutasiItem {
  date: string;       // Tanggal transaksi (YYYY-MM-DD HH:MM)
  amount: string;     // Jumlah (tanpa Rp/titik)
  type: 'CR' | 'DB';  // CR = Masuk, DB = Keluar
  qris: string;       // Tipe QRIS
  brand_name: string; // Nama pengirim (DANA, OVO, dll)
  issuer_reff: string;// Reff ID dari issuer
  buyer_reff: string; // Nama pengirim / Keterangan
  balance: string;    // Saldo akhir
}

Lisensi

Private / Proprietary. Dilarang mendistribusikan ulang tanpa izin.