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

marsy.js

v1.0.4

Published

Marsy.Live için tasarlanmış bir API yönetim uygulamasıdır. Bu modül ise kolay bir şekilde kullanımını sağlamaktadır.

Downloads

55

Readme

Şuan da test aşamasındadır sadece belirli kullanıcılar bunu kullanabilir!

Discord için direk kullanıcıya tanımlama sistemi

const Discord = require('discord.js');

const { Client, GuildTypes } = require('marsy.js');
const marsy = new Client({
    license: "<Lisans Anahtarı>"
})

async function get_marsy_data() {
    const user_data = await marsy.users.fetch(this.id);
    return user_data;
}

Discord.GuildMember.prototype.marsy_get = get_marsy_data;
Discord.User.prototype.marsy_get = get_marsy_data;

// Eval ile message.member.marsy_get() fonksiyonu ile getirebilir, client.guilds.cache.get("<Guild ID>").members.cache.get("<User ID>").marsy_get() veya client.users.cache.get("<User ID>").marsy_get() ile denemeler yapabilirsiniz ekstra sonuç almak için burayı inceleyin.

marsy.login()

Bağlantı ve veri örneği

const { Client, GuildTypes } = require('marsy.js');
const marsy = new Client({
    license: "<Lisans Anahtarı>"
})
marsy.on('ready', async () => {
    const user = await marsy.users.fetch("<User ID>");
    // İsteğe bağlı user.data ile direk tüm herşeyi getirebilirsiniz.
    if(user) console.log(user);



    const guild = await marsy.guilds.fetch("<Guild ID>");
    if(guild) console.log(guild);

    const all_guilds = await marsy.guilds.getAll() || [];
    console.log(all_guilds);
})

marsy.login()

Kullanıcı Getirildiğinde


<User>.data // JSON olarak getirir.
<User>.getGuilds() // Tüm Sunucuları Getirir <İsim, Yaş, Cinsiyet>
<User>.displayAvatarURL // Avatar URL'si getirilir.
<User>.displayBannerURL // Banner URL'si getirilir.
<User>.connections // Hesabında bulunan bağlantılar detayları ile getirilir.
<User>.messages // const user = await marsy.users.fetch("<User ID>", true); sonuna true eklenmelidir bir üye getirilirken bu verinin yavaş gelmesine olanak sağlar.

<User>.names // Yapay zeka tarafından algılanan isim veya isimleri getirir.
<User>.badges // Tüm rozetlerini açıklamalarına kadar detaylı bir şekilde getirir (İcon, Şu zaman boost bastığı, Eski kullanıcı adı ve benzeri.)