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

vinet

v1.0.3-beta.1.0.4

Published

Vi Services geliştiricileri için hazırlanan modul.

Downloads

624

Readme

Vi Services geliştiricileri için hazırlanan module hoşgeldin.

🏠 Github Docs

Kurulum

npm install vinet@latest

Test

npm run test

Tanımlama

const vinet = require('vinet');

Cihaz Serial

// Cihaz seri numarası
const originalHwid = vinet.DeviceSerial(true);
console.log(originalHwid);
// -> d3c3d6a6-100a-4ebd-bf79-f3a9e1a9a0e1

// Cihaz seri numarası şifrelenmiş (sha-256 hash)
const hashHwid = vinet.DeviceSerial(false);
console.log(hashHwid);
// -> 970g8a65y62vfr13094b0de25131155fc69d76f8c8dc1538ee22d7862378d05a

Rastgele Id

// Küçük harf, büyük harf ve sayı
let id = vinet.makeId(20);
console.log(id);
// -> "n3oF2wS6nS35PNFbfLEw"

// Sadece küçük harf ve sayı
id = vinet.makeId(20, { lower: true, number: true });
console.log(id);
// -> "awlm7fnjv4pu8ws0gpwr"

// Sadece "1234" ile oluşturur
id = vinet.makeId(20, "1234");
console.log(id);
// -> "23113311443232314242"

// Sadece "abcdef" ve "012345" ile oluşturulur
id = vinet.makeId(20, "id");
console.log(id);
// -> "020ced3f322c50f1fa5a"

Rastgele Sayı

// 0 ile 5 arasında rastgele sayı
const Rn0v5 = vinet.random(0, 5);
console.log(Rn0v5);
// -> 5

// 5 ile 50 arasında rastgele sayı
const Rn5v50 = vinet.random(5, 50); 
console.log(Rn5v50);
// -> 18

// 2000 ile 2050 arasında rastgele sayı
const Rn2000v2050 = vinet.random(2000, 2050);
console.log(Rn2000v2050);
// -> 2008

Düzenlenmiş Versiyon

// Boş bırakılırsa vinet modul sürümü (1.0.3-beta.1.0.2)
const VinetVersion = vinet.versionString();
console.log(VinetVersion);
// -> 1.0.3 - Beta 1.0.2

let version = vinet.versionString("3.0.1");
console.log(version);
// -> 3.0.1

version = vinet.versionString("3.0.1-beta.1.0");
console.log(version);
// -> 3.0.1 Beta 1.0

version = vinet.versionString("3.0.1-alpha.1.0");
console.log(version);
// -> 3.0.1 Alpha 1.0

Tarih Fonksiyonu

// Şuanki tarih
let tarih = vinet.getDate();
console.log(tarih);
// -> "20 Ekim, 2024 10:20"

// Belirli bir tarih
tarih = vinet.getDate(new Date("Oct 20, 2003 10:20"))
console.log(tarih);
// -> "20 Ekim, 2003 10:20"

// Özel Format ile şuanki tarih
tarih = vinet.getDate(null, "DD MMM YYYY");
console.log(tarih);
// -> "20 Ekim 2024"

// Özel Format ile belirli bir tarih
tarih = vinet.getDate(new Date("Oct 20, 2003 10:20"), "DD MMM YYYY");
console.log(tarih);
// -> "20 Ekim 2003"

Google Robot Doğrulaması

const GoogleRecaptcha = new vinet.ReCaptcha.Google("Google-Recaptcha-Secret");

app.post('/action', async (request, response) => {
    // Token request.body gönderilirse "g-recaptcha-response" veya "token" verisini alır veya direkt doğrulama tokeni gönderilir.
    // Ip adresi zorunlu değil, "request-ip" modülü kullanabilirsiniz.
    const NotBot = await GoogleRecaptcha.verifyToken(request.body, request.clientIp);

    if (NotBot) {
        res.status(200).json({
            success: true,
            message: 'Tebrikler, robot değilsin! (opsiyonel)'
        });
    } else {
        res.status(403).json({
            success: false,
            message: 'Robot musun krdşm?'
        });
    }
});

Lisans Kontrolü

(async () => {
    try {
        const Manager = new vinet.LicenseManager("uygulama_id", "uygulama_secret");

        Manager.setProduct("urun_id");
        Manager.setLicense("lisans_anahtari");

        const result = await Manager.checkLicense();
        if (result.success) {
            console.log("Lisans kontrolü başarılı!", result);
        } else {
            console.log("Lisans kontrolü başarısız!", result.message);
        }

        const application = await Manager.getApplication();
        if (application.success) {
            console.log("Uygulama Bilgileri:", application);
        } else {
            console.log("Uygulama bilgileri alınırken hata oluştu:", application.message);
        }

        const product = await Manager.getProduct();
        console.log("Ürün bilgileri alma sonucu:", product);

        if (product.success) {
            console.log("Ürün Bilgileri:", product);
        } else {
            console.log("Ürün bilgileri alınırken hata oluştu:", product.message);
        }
    } catch (error) {
        console.error("Bir hata oluştu:", error.message);
    }
})();

Geliştirici

👤 Vi Services - @ardareaa

  • Website: https://viii.net.tr/
  • Github: @ardareaa

🤝 Katkıda bulun

Katkılar ve özellik istekleri memnuniyetle karşılanır!Sorunlar sayfasını kontrol edebilirsiniz.

Desteğinizi gösterin

Vi Services projeleri size yardımcı olduysa bir ⭐️ verin!

📝 License

Copyright © 2024 ardareaa. Bu proje MIT lisanslıdır.


Bu README, ❤️ ile readme-md-generator tarafından oluşturuldu.