An open API service indexing awesome lists of open source software.

https://github.com/hyperonecom/vhdx


https://github.com/hyperonecom/vhdx

vhdx

Last synced: 2 months ago
JSON representation

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
, ...
}

```