# rcinfo

> Node module to show resources informations of exe and dll files

Latest version **0.1.3** (published 2015-09-28) · BSD-2-Clause license · 0 weekly downloads

## Install

```sh
npm install rcinfo
pnpm add rcinfo
yarn add rcinfo
bun add rcinfo
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2015-09-28 |
| First published | 2015-09-28 |
| Weekly downloads | 0 |
| License | BSD-2-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Nicolas Spiric |
| Maintainers | spinico |
| Keywords | windows, exe, dll, info |

## Links

- npm: https://www.npmjs.com/package/rcinfo
- Repository: https://github.com/spinico/rcinfo
- Homepage: https://github.com/spinico/rcinfo#readme
- Issues: https://github.com/spinico/rcinfo/issues
- npm.io page: https://npm.io/package/rcinfo

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2015-09-28
- 0.1.2 — 2015-09-28
- 0.1.0 — 2015-09-28

## README

# rcinfo
A node module to show resources informations of exe and dll files.

## Usage

var rcinfo = require('rcinfo');

rcinfo(*path to an exe or dll file*, function (error, info) { ... })

### Example 
```
rcinfo('./bin/ShowVer.exe', function (error, info) {
  if (!error) {  
    console.log(info);
  }
});
```
This output ```info``` to the console with the following json string:
```
{ Signature: 'feef04bd',
  StrucVersion: '1.0',
  FileVersion: '1.0.0.1',
  ProductVersion: '1.0.0.1',
  FileFlagsMask: '0x3f',
  FileFlags: '0',
  FileOS: 'VOS__WINDOWS32',
  FileType: 'VFT_APP',
  FileDate: '0.0',
  LangID: '040904b0',
  AuthorName: 'Ted Peck',
  Comments: '',
  CompanyName: '',
  FileDescription: 'ShowVer console app for VersionInfo display',
  InternalName: 'ShowVer',
  LegalCopyright: 'Copyright © 2002',
  LegalTrademarks: '',
  OriginalFilename: 'ShowVer.exe',
  PrivateBuild: '',
  ProductName: 'ShowVer',
  SpecialBuild: '',
  Translation: '040904b0' }
  
```
### Acknowledgements
This module uses the *ShowVer.exe command-line VERSIONINFO display program by Ted Peck (c) 2002* available on [CodeProject](http://www.codeproject.com/Articles/2457/ShowVer-exe-command-line-VERSIONINFO-display-progr).

---
_Source: https://npm.io/package/rcinfo · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
