
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
aeza-net-sdk
Advanced tools
AEZA-NET-SDK - This is a Node.js module that makes it easy to interact with the AEZA API. 🚀
Node.js 12.20.0 or newer is required
npm
(recommended)
npm i aeza-net-sdk
import AezaAPI from 'aeza-net-sdk';
const api = new AezaAPI(process.env.TOKEN);
const { response } = await api.profile.get()
console.log(response) // Displays information about your profile
const { response } = await api.profile.limits()
console.log(response) // Display information about limits
const { response } = await api.service.osList();
console.log(response) // Displays all os
const { response } = await api.service.products(ID); // ID it`s not necessary to specify, to receive all servers
console.log(response) // Product information, with a description of the price and a list of operating systems
const { response } = await api.service.getServer(SERVER_ID); // SERVER_ID it`s not necessary to specify, to receive all servers
console.log(response) // Information about your servers
const { response } = await api.service.getCharts(YOUR_SERVER_ID);
console.log(response) // Displays server statistics information
const { response } = await api.service.createServer({
productId: ID_SERVICES,
term: 'hour/month/year',
autoProlong: false/true,
name: 'YOU-NAME-SERVER',
});
console.log(response) // Display server order information
const { response } = await api.service.getOrder(ORDER_ID);
console.log(response) // Displays server information
const { response } = await api.service.reinstall({
id: YOUR_SERVER_ID,
recipe: RECIPE,
password: YOUR_NEW_PASSWORD,
os: NEW_OS
});
console.log(response)
const { response } = await api.service.deleteServer(YOUR_SERVER_ID);
console.log(response)
const { response } = await api.service.ctl(YOUR_SERVER_ID, ACTION); //Possible actions: resume/suspend/reboot
console.log(response)
const { response } = await api.service.changePassword(YOUR_SERVER_ID, "NEW_PASSWORD");
console.log(response)
const { response } = await api.service.getTask(YOUR_SERVER_ID);
console.log(response)
FAQs
A library that allows you to work with the AEZA.NET hosting API
The npm package aeza-net-sdk receives a total of 5 weekly downloads. As such, aeza-net-sdk popularity was classified as not popular.
We found that aeza-net-sdk demonstrated a not healthy version release cadence and project activity because the last version was released 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.