New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

voidix

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

voidix

Package untuk search sfile.mobi, YouTube, stalk GitHub, generate AI art, dan random UUID

latest
npmnpm
Version
4.1.0
Version published
Maintainers
1
Created
Source

Voidix Package

Package untuk search sfile.mobi, YouTube, stalk GitHub, generate AI art, dan random UUID.

Deskripsi

Bahasa Indonesia 🇮🇩

Voidix adalah paket Node.js super praktis buat developer yang pengen fitur-fitur keren tanpa ribet 🌟. Dengan Voidix, kamu bisa cari file di Sfile.mobi 📂, search video di YouTube 📺, stalking profil GitHub orang 🕵️‍♂️, bikin gambar keren pakai AI 🎨, dan generate UUID acak 🔑. Semua langsung bisa dipakai di project web atau REST API kamu 🌐. Cocok buat prototipe cepat, test API, atau eksplor ide proyek baru 🚀. Ringan, simpel, dan semua fungsi tersusun rapi di satu package 📦. Tinggal npm install voidix dan langsung pakai 😎.

Bahasa Inggris 🇺🇸

Voidix is a super handy Node.js package for developers who want cool features without the fuss 🌟. Search files on Sfile.mobi 📂, find YouTube videos 📺, stalk GitHub profiles 🕵️‍♂️, generate awesome AI art 🎨, and create random UUIDs 🔑. Everything is ready to use for your web projects or REST APIs 🌐. Perfect for quick prototyping, testing APIs, or exploring new project ideas 🚀. Lightweight, simple, and all features are neatly organized in one package 📦. Just npm install voidix and go 😎.

Install

npm install voidix

CARA PAKAI QUERY

const readline = require('readline');

const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
});

console.log('=== Voidix Menu ===');
console.log('1. GitHub Stalk');
console.log('2. Random UUID');

rl.question('Pilih fitur (1 atau 2): ', (choice) => {
  if (choice === '1') {
    rl.question('Masukkan username GitHub: ', async (username) => {
      try {
        const result = await githubstalk(username);
        console.log('=== Info GitHub ===');
        console.log('Username:', result.data.username);
        console.log('Name:', result.data.name);
        console.log('Bio:', result.data.bio);
        console.log('Avatar URL:', result.data.avatar_url);
        console.log('Public Repos:', result.data.public_repos);
        console.log('Followers:', result.data.followers);
        console.log('Following:', result.data.following);
        console.log('Location:', result.data.location);
        console.log('Blog:', result.data.blog);
      } catch (err) {
        console.error('Terjadi error:', err.message);
      } finally {
        rl.close();
      }
    });
  } else if (choice === '2') {
    console.log('Random UUID:', generateUUID());
    console.log('Random UUID:', generateUUID());
    console.log('Random UUID:', generateUUID());
    rl.close();
  } else {
    console.log('Pilihan tidak valid.');
    rl.close();
  }
});

CARA PAKAI NO QUERY

const xoo = require('voidix');

console.log('Random UUID 1:', xoo.generateUUID());
console.log('Random UUID 2:', xoo.generateUUID());
console.log('Random UUID 3:', xoo.generateUUID());

Keywords

api

FAQs

Package last updated on 28 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts