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

isl2js

v1.0.0

Published

Bahasa pemrograman Indonesia berbasis JavaScript

Readme

Indonesia Script Language (ISL)

Bahasa pemrograman sederhana dengan sintaks Bahasa Indonesia yang dapat dikompilasi ke JavaScript.

Fitur

  • Sintaks menggunakan Bahasa Indonesia yang mudah dipahami
  • Kompilasi ke JavaScript standar
  • Mendukung manipulasi DOM
  • Mendukung operasi matematika dasar
  • Mendukung struktur kontrol (if, else, loop)
  • Mendukung variabel dan reassignment
  • Mendukung console logging

Penggunaan

Instalasi

npm install

Kompilasi

node bin/isl2js.js script.isl

Ini akan menghasilkan file script.js yang dapat dijalankan di browser.

Sintaks Dasar

Variabel

// Deklarasi variabel
sementara nama adalah "John"
sementara umur adalah 25
sementara isActive adalah benar

// Reassignment variabel
yang mana umur adalah 26

Console Log

tampilkan "Hello World"
tampilkan nama

Kondisional

// If statement
kalau nilai lebih gede 3
  tampilkan "Nilai lebih besar dari 3"
berhenti

// If-else
kalau nilai lebih gede 3
  tampilkan "Nilai lebih besar dari 3"
lainnya
  tampilkan "Nilai lebih kecil atau sama dengan 3"
berhenti

// If-else if-else
kalau nilai lebih gede 80
  tampilkan "Nilai A"
atau kalau nilai lebih gede 70
  tampilkan "Nilai B"
lainnya
  tampilkan "Nilai C"
berhenti

Loop

// Basic loop
untuk i hingga 10
  tampilkan "Iterasi ke-" + i
berhenti

// Loop dengan kondisi
untuk i hingga 10
  kalau i lebih gede 3
    tampilkan "loop ke " + i
  berhenti
berhenti

Operator Perbandingan

  • lebih gede : lebih besar dari (>)
  • kurang dari : lebih kecil dari (<)
  • sama dengan : sama dengan (===)
  • tidak sama dengan : tidak sama dengan (!==)

Nilai Boolean

  • benar : true
  • salah : false

Manipulasi DOM

// Mengambil nilai dari elemen
sementara input adalah pilihElemen "#inputField"

// Menggunakan nilai dalam kondisi
kalau input kurang dari 10
  tampilkan "Input terlalu kecil"
berhenti

Contoh Program

// Program sederhana untuk menghitung
sementara apa adalah 10
tampilkan "apa: " + apa

yang mana apa adalah 11
tampilkan "apa: " + apa

sementara isHidup adalah benar
tampilkan "is hidup :" + isHidup

untuk i hingga 10
  kalau i lebih gede 3
    tampilkan "loop ke " + i
  berhenti
berhenti

Pengembangan

ISL masih dalam tahap pengembangan aktif. Fitur-fitur baru akan ditambahkan secara berkala.

Lisensi

MIT License