Gathering detailed insights and metrics for aeza-net-sdk
Gathering detailed insights and metrics for aeza-net-sdk
Gathering detailed insights and metrics for aeza-net-sdk
Gathering detailed insights and metrics for aeza-net-sdk
npm install aeza-net-sdk
Typescript
Module System
Node Version
NPM Version
70.9
Supply Chain
98.4
Quality
75.2
Maintenance
100
Vulnerability
100
License
Total Downloads
1,455
Last Day
5
Last Week
23
Last Month
43
Last Year
338
9 Stars
6 Commits
1 Forks
1 Branches
2 Contributors
Updated on Mar 28, 2025
Minified
Minified + Gzipped
Latest Version
1.1.3
Package Id
aeza-net-sdk@1.1.3
Unpacked Size
25.99 kB
Size
4.57 kB
File Count
17
NPM Version
8.15.0
Node Version
16.17.1
Published on
Jun 19, 2023
Cumulative downloads
Total Downloads
Last Day
400%
5
Compared to previous day
Last Week
283.3%
23
Compared to previous week
Last Month
-2.3%
43
Compared to previous month
Last Year
-29.4%
338
Compared to previous year
1
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)
1npm i aeza-net-sdk
1import AezaAPI from 'aeza-net-sdk'; 2const api = new AezaAPI(process.env.TOKEN);
1const { response } = await api.profile.get() 2 3console.log(response) // Displays information about your profile
1const { response } = await api.profile.limits() 2 3console.log(response) // Display information about limits
1const { response } = await api.service.osList(); 2 3console.log(response) // Displays all os
1const { response } = await api.service.products(ID); // ID it`s not necessary to specify, to receive all servers 2 3console.log(response) // Product information, with a description of the price and a list of operating systems
1const { response } = await api.service.getServer(SERVER_ID); // SERVER_ID it`s not necessary to specify, to receive all servers 2 3console.log(response) // Information about your servers
1const { response } = await api.service.getCharts(YOUR_SERVER_ID); 2 3console.log(response) // Displays server statistics information
1const { response } = await api.service.createServer({ 2 productId: ID_SERVICES, 3 term: 'hour/month/year', 4 autoProlong: false/true, 5 name: 'YOU-NAME-SERVER', 6}); 7 8console.log(response) // Display server order information
1const { response } = await api.service.getOrder(ORDER_ID); 2 3console.log(response) // Displays server information
1const { response } = await api.service.reinstall({ 2 id: YOUR_SERVER_ID, 3 recipe: RECIPE, 4 password: YOUR_NEW_PASSWORD, 5 os: NEW_OS 6}); 7 8console.log(response)
1const { response } = await api.service.deleteServer(YOUR_SERVER_ID); 2 3console.log(response)
1const { response } = await api.service.ctl(YOUR_SERVER_ID, ACTION); //Possible actions: resume/suspend/reboot 2 3console.log(response)
1const { response } = await api.service.changePassword(YOUR_SERVER_ID, "NEW_PASSWORD"); 2 3console.log(response)
1const { response } = await api.service.getTask(YOUR_SERVER_ID); 2 3console.log(response)
No vulnerabilities found.
No security vulnerabilities found.