Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

partitioninfo

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

partitioninfo

Get information about a partition from an image file

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.7K
decreased by-5.56%
Maintainers
1
Weekly downloads
 
Created
Source

partitioninfo

Get information about a partition from an image file.

npm version dependencies Build Status Build status ![Gitter](https://badges.gitter.im/Join Chat.svg)

Installation

Install partitioninfo by running:

$ npm install --save partitioninfo

Documentation

partitioninfo.get(image, number) ⇒ Promise.<Object>

Kind: static method of partitioninfo
Summary: Get information from a partition
Returns: Promise.<Object> - partition information
Access: public

ParamTypeDescription
imageString | filedisk.Diskimage path or filedisk.Disk instance
numberObjectpartition number

Example

partitioninfo.get 'foo/bar.img',
	primary: 4
	logical: 1
.then (information) ->
	console.log(information.offset)
	console.log(information.size)
	console.log(information.type)

partitioninfo.getPartitions(image, [offset]) ⇒ Promise.<Array.<Object>>

Kind: static method of partitioninfo
Summary: Read all partition tables from a disk image recursively.
Returns: Promise.<Array.<Object>> - partitions information
Access: public

ParamTypeDefaultDescription
imageString | filedisk.Diskimage path or filedisk.Disk instance
[offset]Number0where the first partition table will be read from, in bytes

Example

partitioninfo.getPartitions('foo/bar.img')
.then (information) ->
	for partition in information
		console.log(partition.offset)
		console.log(partition.size)
		console.log(partition.type)

Support

If you're having any problem, please raise an issue on GitHub and the Resin.io team will be happy to help.

Tests

Run the test suite by doing:

$ gulp test

Contribute

Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:

$ gulp lint

License

The project is licensed under the MIT license.

Keywords

FAQs

Package last updated on 19 Jun 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc