Easy to Use, fast and lightweight CCnet Minecraft server API warpper.
To Install Module run this command
npm install ccnetmc-api
- Lightweight an fast.
- Optimised functions.
- Easy to use.
- Supports Nations server.
For support, Open PR/Issue from github.
// ES/Typescript
import { CCnet } from 'ccnetmc-api';
// Or CJS
const { CCnet } = require("ccnetmc-api");
const api = new CCnet();
async function App() {
const Players = await api.player.getOnlinePlayers(true);
console.log(Players)
};
App();
- New test suite with separate test files for each provider
- Comprehensive caching mechanism for providers
- Enhanced parsing and data validation
- Server status provider with detailed monitoring
- Refactored Player, Towns, Nations, Sieges providers with improved caching and type safety
- Optimized Towns provider with better performance and code cleanup
- Enhanced Nations provider with caching and performance improvements
- Updated RequestManager with robust caching and error handling
- Improved extractTownData method with better parsing and type safety
Thank to @Shadowevil015 and @Owen3H for their inpiring Hard work.