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

luak-express

v2.1.4

Published

Premium Node.js Framework based on Express with Laravel-like features and elegant debugging.

Readme

Luak Express Framework v2.1.4 🚀

Luak Express adalah framework Node.js premium berbasis Express yang dirancang untuk memberikan pengalaman pengembangan (Developer Experience) sekelas Laravel. Dengan fokus pada keindahan desain, kemudahan penggunaan, dan struktur yang solid.

✨ Fitur Utama (v2.1.4)

  • Premium Debugging (dd & d): Fungsi "Dump and Die" dengan tampilan HTML mewah, tipografi IBM Plex, dan isolasi konteks menggunakan AsyncLocalStorage.
  • Encapsulated Core Handling: Exception handler dan view error default (500, 404) kini terisolasi di dalam core framework untuk keamanan maksimal.
  • Laravel-Like Architecture: Struktur folder yang familiar (Controllers, Providers, Middleware, Routes).
  • Dynamic Branding: Sinkronisasi otomatis Nama Aplikasi dan Versi di seluruh halaman sistem.
  • Dark Mode Aesthetic: Desain UI sistem yang modern dan nyaman di mata.

📦 Sertifikasi Instalasi

npm install luak-express

🚀 Memulai Proyek Baru

Luak Express menyediakan CLI untuk mempercepat pembuatan struktur folder proyek baru secara otomatis.

  1. Instalasi CLI Secara Global (Opsional):

    npm install -g luak-express
  2. Inisialisasi Proyek: Buka terminal di folder proyek Anda, lalu jalankan:

    npx luak init

    Atau jika sudah instal global: luak init

Perintah ini akan secara otomatis membuat struktur folder app/, bootstrap/, config/, routes/, serta file index.js dan .env.example.

🛠️ Penggunaan Dasar

Global Helpers

Luak Express menyediakan helper global yang bisa dipanggil di mana saja tanpa require.

Dump and Die (dd)

Hentikan eksekusi dan lihat isi variabel dengan tampilan cantik:

Route.get('/debug', (req, res) => {
    const data = {
        user: 'Luak Developer',
        role: 'Admin',
        permissions: ['read', 'write']
    };
    
    dd(data, req.all()); // Berhenti di sini
});

Dump (d)

Lihat isi variabel tanpa menghentikan eksekusi:

d('Ini hanyalah log premium');

🏗️ Struktur Proyek

├── app/                  # Logika Aplikasi (Controllers, Providers, etc)
├── bootstrap/            # Inisialisasi Framework
├── config/               # File Konfigurasi
├── resources/            # Views & Assets (User Land)
├── routes/               # Definisi Routing
├── src/                  # Core Framework (Protected)
└── package.json

⬆️ Update v2.1.4

  • CLI Auto-Scaffolding: Script dev dan test otomatis ditambahkan saat init.
  • Centralized Versioning di Application.js.
  • Pemindahan Error Handler ke src/Foundation/Exceptions/Handler.js.
  • Premium UI overhaul untuk halaman 404 dan 500.
  • Sinkronisasi gradient logo di seluruh sistem.

Dikembangkan dengan ❤️ oleh Luak Express Team.