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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cloudlyteam/cloudlyapi.js

v1.0.5

Published

An powerful api to make incredible things

Readme

CloudlyAPI.js

Instalation

$ npm i @cloudlyteam/cloudlyapi.js --save

Use

const cloudlyapi = require("@cloudlyteam/cloudlyapi.js");

Methods

  • getNameHistory

--- Get minecraft name history

--- Get the UUID of the minecraft player

--- Get the Skin/Head/Body URL of the minecraft player

const { getNameHistory } = cloudlyapi;

getNameHistory("Username", (callback));

// Example

getNameHistory("iRickzX8", (err, data) => {
  if(err) return console.log(err);
  console.log(data);
})

// Output

 {
   names: [
     { name: 'RickZeir', changedToAt: '0' },
     { name: 'ImRickz_', changedToAt: '1574817160000' },
     { name: 'iRickxz_', changedToAt: '1577512065000' },
     { name: 'iRickzX8', changedToAt: '1581100732000' }
   ],
   latestName: 'iRickzX8',
   playerUUID: '18d299f2cb4e4be19c6f329a40745426',
   bodyURL: 'https://minotar.net/armor/body/18d299f2cb4e4be19c6f329a40745426/2048.png',
   headURL: 'https://minotar.net/helm/18d299f2cb4e4be19c6f329a40745426/2048.png',
   skinURL: 'https://minotar.net/skin/18d299f2cb4e4be19c6f329a40745426'
}
  • getSteamGame

--- Get information about a Steam game through its ID or name

const { getSteamGame } = cloudlyapi;

// With the ID

getSteamGame.id(ID, (callback));

// With the name

getSteamGame.name("Name", (callback));

// Example

getSteamGame("WarZone", (err, data) => {
  if(err) return console.log(err);
  console.log(data);
});

// Output

{
  name: "WarZone",
  price: null,
  platforms: [ "WINDOWS" ],
  reviews: null,
  languages: "English*\n*languages with full audio support",
  website: null,
  appid: 1084660,
  required_age: null,
  release_date: null,
  background: "https://steamcdn-a.akamaihd.net/steam/apps/1084660/page_bg_generated_v6b.jpg?t=1586010988",
  categories: [
    "Multi-player",
    "Steam Achievements",
    "In-App Purchases",
    "Steam Cloud",
    "Stats"
  ],
  genres: [ "Action", "Early Access" ],
  large_description: "WarZone Large Description",
  short_description: "WarZone Short Description",
  icon: "https://steamcdn-a.akamaihd.net/steam/apps/1084660/header.jpg?t=1586010988",
  requirements: [
    {
      windows: {
        minimum: "Minimum:\n"+
          "OS: Windows 7 SP1 (x64)\n"+
          "Processor: Intel Core i5-2500K CPU\n"+
          "Memory: 2000 MB RAM\n"+
          "Graphics: Geforce GTX 770 or AMD Radeon HD 7870\n"+
          "Network: Broadband Internet connection\n"+
          "Storage: 10000 MB available space"
      }
    }
  ],
  dlcs: null,
  developers: [ 'WeS Cooperation' ],
  publishers: [ 'WeS Cooperation' ],
  copyright: null,
  screenshots: [],
  packages: null,
  movies: null,
  recommendations: null,
  content_descriptors: { ids: [ 2, 5 ], notes: null },
  achievements: null,
  metacritic: null,
  support: { url: "", email: "[email protected]" },
  controller_support: null,
  type: "game"
}

Changelog

  • 24/08/2020 - v1.0.1
--- Readme & getNameHistory ---
  
- Updates in the Readme
- Change in the response object
- Added more data in the response object
  • 24/08/2020 - v1.0.2
--- getNameHistory ---
- Fixed a minor error
  • 24/08/2020 - v1.0.3
--- Readme ---
- Update in the Readme
  • 25/08/2020 - v1.0.4
--- getSteamGame & Readme ---
- Added the posibility to search an game of Steam through the 
  ID and the name
- Changed the methods zone and added a zone of collaborators was added
  • 25/08/2020 - v1.0.5
--- Readme ---
- Fixed an syntax error

Collaborators

  • ! Yuu ˟ル#4543
  • ZickTronHD#1507
  • Melphi#9547
  • wazzz §#7123