
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A robust TypeScript wrapper for the Hypixel SkyBlock API, providing type-safe access to Hypixel SkyBlock data.
A robust TypeScript wrapper for the Hypixel SkyBlock API, providing type-safe access to Hypixel SkyBlock data.
Note: Currently, SkyblockTS only supports auctions, profiles and collections. Support for more features will be added in the future.
npm install skyblockts
# or
yarn add skyblockts
# or
pnpm add skyblockts
SkyblockTS now offers two ways to use the package:
import { auctions, profiles, collections } from "skyblockts";
// Use directly without initializing
const allAuctions = await auctions.all();
// Filter auctions with various criteria
const filteredAuctions = await auctions.filter({
itemName: "Hyperion",
tier: "LEGENDARY",
minPrice: 1000000,
maxPrice: 10000000,
binOnly: true,
});
// Get a user's profiles by their UUID
const userProfiles = await profiles.get("playerUUID");
// Get all the collections within a category
const farmingCollections = await collections.get("farming");
import { SkyblockTS } from "skyblockts";
// Initialize the client with options
const client = new SkyblockTS({
// Optional: Set a custom cache TTL in milliseconds (default: 60000)
cacheTTL: 120000,
// Optional: Set a custom batch size (default: 3)
batchSize: 10,
});
// Get all auctions
const allAuctions = await client.auctions.all();
// Filter auctions with various criteria
const filteredAuctions = await client.auctions.filter({
itemName: "Hyperion",
tier: "LEGENDARY",
minPrice: 1000000,
maxPrice: 10000000,
binOnly: true,
});
// Get a user's profiles by their UUID
const userProfiles = await client.profiles.get("playerUUID");
// Get all the collections within a category
const farmingCollections = await client.collections.get("farming");
SkyblockTS is actively being developed with the following features planned:
Contributions are welcome! Feel free to open issues or submit pull requests.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A robust TypeScript wrapper for the Hypixel SkyBlock API, providing type-safe access to Hypixel SkyBlock data.
We found that skyblockts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.