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

advanced-utilities

v2.3.4

Published

**Adds more Console options,new name for json functions,minecraft stats,file system,fivem server stats.** <br/> **Join my discord server to get support or report bugs.** ### Click Below for joining ### [Discord-Server](https://discord.gg/Ykwr258WSK)

Downloads

71

Readme

Advanced-Utilities

Adds more Console options,new name for json functions,minecraft stats,file system,fivem server stats. Join my discord server to get support or report bugs.

Click Below for joining

Discord-Server

Examples:

Console Class:
Open Console:

const au = require("advanced-utilities");
const Console = au.Console;
Console.Open();

Close Console:

const au = require("advanced-utilities");
const Console = au.Console;
Console.Open();

Console ReadLine:

const au = require("advanced-utilities");
const Console = au.Console;
Console.Open();
async function ConsoleInput(){
Console.WriteLine("Please type one number:");
let num = await Console.ReadLine("number");//ReadLine(type),Default type is string,Types:
//string, number || num || int, double, bool || boolean
Console.Close();
}
ConsoleInput();

Console WriteLine:

const au = require("advanced-utilities");
const Console = au.Console;
Console.Open();
Console.WriteLine("Hi");
Console.Close();
}

Console Write:

const au = require("advanced-utilities");
const Console = au.Console;
Console.Open();
Console.Write("Hello ");
Console.Write("Hello2 ");
Console.Write("Hello3 ");
Console.Write("Hello4 ");
Console.Close();
}

Minecraft Class:

const au = require("advanced-utilities");
const mc = au.minecraft;
const Console = au.Console;
async function Stats(){
const stats = await mc.pingServer("play.hypixel.net",25565);
Console.Open()
Console.WriteLine(stats);
}
Stats();

Json Class:

const au = require("advanced-utilities");
const json = au.json;
  const toJson = json.parseJs(js) //from json to js
  const toJs = json.parseJson(js) //from js to json

Fivem Class: Get server stats,without players list:

const au = require("advanced-utilities");
const Console = au.Console;
const fivem = au.fivem;
async function Stats(){
Console.Open();
const stats = await fivem.pingServer("54.37.245.139",30278) //pingServer(ip,port)
Console.WriteLine(stats);
Console.Close();
}
Stats();

Get players list:

const au = require("advanced-utilities");
const Console = au.Console;
const fivem = au.fivem;
async function Stats(){
Console.Open();
const players = await fivem.getPlayers("54.37.245.139",30278) //getPlayers(ip,port)
Console.WriteLine(players);
Console.Close();
}
Stats();

Fortnite Class Get user id:

const au = require("advanced-utilities");
const fortnite = au.fortnite;
const Console = au.Console;
async function Stats(){
const user = await fortnite.getUserId("Ninja");//getUserId(username)
Console.Open();
Console.WriteLine(user)//User Object
Console.Close();
}
Stats();

Get user profile:

const au = require("advanced-utilities");
const fortnite = au.fortnite;
const Console = au.Console;
async function Stats(){
const profile = await fortnite.getProfile("Ninja");//getProfile(username or id,platform),If you don't specfic a platform,The platform will be pc.
Console.Open();
Console.WriteLine(profile) //Profile Object
Console.Close();
}
Stats();

Get fortnite shop:

const au = require("advanced-utilities");
const fortnite = au.fortnite;
const Console = au.Console;
async function Stats(){
const shop = await fortnite.getShop();
Console.Open();
Console.WriteLine(shop) //Shop array. Each array value has an object that contains a details about specific item.
Console.Close();
}
Stats();

Get fortnite shop:

const au = require("advanced-utilities");
const fortnite = au.fortnite;
const Console = au.Console;
async function Stats(){
const challenges = await fortnite.getChallenges();
Console.Open();
Console.WriteLine(challenges) //challenges array. Each array value has an object that contains a details about specific challenge.
Console.Close();
}
Stats();

File System Class: Create File:

const au = require("advanced-utilities");
const fs = au.fs;
const Console = au.Console;
async function Main(){
const file = await fs.Create("vars",'js',"let i = 0"); // Create(name,type,content);
Console.Open()
Console.WriteLine(file);//Response of The file creation
}
Main();

Delete File:

const au = require("advanced-utilities");
const fs = au.fs;
const Console = au.Console;
async function Main(){
const file = await fs.Delete("./vars.js"); // Delete(path);
Console.Open()
Console.WriteLine(file);//Response of The delete - success or error
}
Main();

Change File Content:

const au = require("advanced-utilities");
const fs = au.fs;
const Console = au.Console;
async function Main(){
const file = await fs.Change("./vars.js","let i = 0; \n let z = 5;"); // Change(path,newContent);
Console.Open()
Console.WriteLine(file);//Response of The change - success or error
}
Main();

You can use then and catch in all the classes instead of await!

Example:

const au = require("advanced-utilities");
const fs = au.fs;
const Console = au.Console;
// Change(path,newContent);
fs.Change("./vars.js","let i = 0; \n let z = 5;").then(res => {
Console.Open()
Console.WriteLine(res);//Response of The change 
}).catch(err => {
Console.WriteLine(err);
})

Simple Guess Game

Example:

const au = require("advanced-utilities");
const Console = au.Console;
                         //args1 //args2   //args3
async function GuessGame(tries=-1,maxTries=-1,def="") { //Tries number, maxTries number, def string
if(tries == -1) throw new Error("Must get a specific tries number"); //If No function args1
if(maxTries == -1) throw new Error("Must get a specific max tries number")//If No function args2
if(def === "") throw new Error("Must get a specific def string")//If No function args3
let number;
let secret = 0;
let d = 0; //Game Def in Number
Console.Open(); //Open Console before the game is starting
switch(def.toLowerCase()){ //Modify Game Def
case "easy":
d = 1;
case "normal":
d = 2;
case "medium":
d = 3;
case "hard":
d = 4;
case "hardest":
d = 5;
default:
d = 2;
}
secret = Math.floor(Math.random() * 10) * d //Set the secret number
//Start the game loop
do{
Console.WriteLine("Please type your guess:"); //Console Message, In this case what the user need to enter
number = await Console.ReadLine("number"); //Get a number input
if(number == secret || maxTries == tries) break; //The user win, break the loop or the tries done
Console.WriteLine(`Wrong number,Tries Left: ${maxTries - tries}`); //If the number is wrong display a message to the user
tries++; //Tries Update
}while(tries <= maxTries && number !== secret) //The loop run only if tries !== maxTries and number !== secretNumber
//, If the user has more tries and the number he entered doesn't equal the secretNumber
if(number == secret){
//User Win!
//do...
}else{
//User Lose
//do...
}
Console.Close(); //Close Console when the game is over
}

GuessGame(1,5,"normal"); //Function Calling
//end

//More Ideas to improve the game:
//You can add a args check and throw errors when needed
//Add win and lose message.
//Add game over message.
//Add play again option.
//Add multiplayer option, Two players in the same computer
//Add score option
//Add time to guess option
//Add what you think to improve this!

//