virtualizorjs 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,7 +33,7 @@ const VirtualizorClient = require('virtualizorjs');
33
33
  // Initialize VirtualizorClient
34
34
  const { ListVPS } = new VirtualizorClient({
35
35
  host: '< IP or Hostname of Virtualizor Server >',
36
- port: 4083,
36
+ port: 4083, // or 4085 for SSL
37
37
  adminapikey: "< Your API KEY >",
38
38
  adminapipass: "< Your API PASS >",
39
39
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "virtualizorjs",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "VirtualizorJS simplifies the management of Virtualizor servers with a streamlined and developer-friendly API for Node.js. Perform actions such as creating, starting, stopping, and restarting virtual servers effortlessly. Ideal for seamless integration into your Node.js applications, providing a powerful toolkit for Virtualizor server management.",
5
5
  "main": "./src/VirtualizorClient.js",
6
6
  "scripts": {},