https://github.com/hyperonecom/vhdx
https://github.com/hyperonecom/vhdx
vhdx
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hyperonecom/vhdx
- Owner: hyperonecom
- Created: 2018-10-05T11:16:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T14:50:14.000Z (over 2 years ago)
- Last Synced: 2025-02-20T13:28:41.760Z (3 months ago)
- Topics: vhdx
- Language: JavaScript
- Size: 2.14 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## usage
```javascript
const vhdx = require('@hyperone/vhdx');const info = await vhdx.info('C:\\disk.vhdx');
{
type: 'dynamic' //dynamic || fixed || differencing
, size: 1073741824 //bytes
, ...
}const info = await vhdx.info('http://example.com/test.vhdx');
{
type: 'dynamic' //dynamic || fixed || differencing
, size: 1073741824 //bytes
, ...
}```