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

ludex.eco

v0.0.1

Published

ludex.eco Javascript İle Yapılabilecek Kolay Kurulumlu Bir Ekonomi Modülüdür.

Downloads

4

Readme

ludex.eco

Quick.db kullanan yeni ve en iyi Global ekonomi Modülü

Join our Support Server if you need help with anything

ludex.eco Modülünü Kurmak İçin Konsola:

npm i ludex.eco

Gerekli Paket:

npm i quick.db

Örnekler

  • Balance Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let balance = await Economy.balance({
  userId: message.author.id //It can be any users ID
});
message.channel.send("Your balance: " + balance.money);
//-> "Your balance: 0"
  • Work Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();

let work = await Economy.work({
  userId: message.author.id, //It can be any users ID
  workMoney: 500, //Amount of money between 1-500
  workJobs: ["Job1", "Job2"] //Optional. Default: ["Chef", "Cashier", "Teacher", "Programmer"]
});
message.channel.send(
  "You have worked as a " + `work.job` + " and got " + work.amount + "$"
);
//-> "You have worked as a Job1 and got 1-500$"
  • addMoney Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let addMoney = await Economy.addMoney({
  userId: message.author.id, //It can be any users ID
  amountMoney: 69 //Can be any amount
});
message.channel.send("I have added to your balance " + addMoney.amount + "$");
//-> "I have added to your balance 69$"
  • removeMoney Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let removeMoney = await Economy.removeMoney({
  userId: message.author.id, //It can be any users ID
  amountMoney: 69 //Can be any amount
});
message.channel.send(
  "I have added to your balance " + removeMoney.amount + "$"
);
//-> "I have added to your balance 69$"
  • setMoney Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let setMoney = await Economy.setMoney({
  userId: message.author.id, //It can be any users ID
  amountMoney: 69 //Can be any amount
});
message.channel.send("I have set your balance to " + removeMoney.amount + "$");
//-> "I have set your balance to 69$"
  • resetMoney Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let setMoney = await Economy.resetMoney({
  userId: message.author.id //It can be any users ID
});
message.channel.send("I have reset your balance, you are now back to 0$");
//-> "I have reset your balance, you are now back to 0$"
  • pay Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
let pay = await Economy.pay({
  userId: message.author.id, //It can be any users ID
  usertoPay: "secondUser", //The second user to give the money to
  amountMoney: 69
});
message.channel.send(`You have paid secondUser ${pay.amount}$`);
//-> "You have paid secondUser 69$"
  • search Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
if (message.content.startsWith("!search")) {
  let search = await Economy.search({
    userId: message.author.id,
    searchMoney: 500,
    searchPlace: ["Place1", "Place2"]
  });
  message.channel.send(
    `You have search in ${search.place} and got ${search.amount}$`
  );
  //-> "You have searched in Place1 and got 200$""
}
  • beg Command
const discord = require("discord.js");
const client = new discord.Client();

const ecoeasy = require("ludex.eco");
const Economy = new ecoeasy();
if (message.content.startsWith("!beg")) {
  let beg = await Economy.beg({
    userId: message.author.id,
    begMoney: 500,
    begPeople: ["Person1", "Person2"]
  });
  message.channel.send(`${beg.people}: Here take ${beg.amount}$`);
  //-> Person1: Here take 200$
}