# open-file-explorer

> Open the given file path in the File explorer in your OS

Latest version **1.0.2** (published 2018-06-25) · Apache License 2.0 license · 0 weekly downloads

## Install

```sh
npm install open-file-explorer
pnpm add open-file-explorer
yarn add open-file-explorer
bun add open-file-explorer
```

## Health

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

Positive: has types package; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2018-06-25 |
| First published | 2018-06-25 |
| Weekly downloads | 0 |
| License | Apache License 2.0 |
| TypeScript types | separate (@types/open-file-explorer) |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 14.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | vibhor agrawal |
| Maintainers | vibhor1997a |
| Keywords | file, explorer, file explorer, open |

## Links

- npm: https://www.npmjs.com/package/open-file-explorer
- Repository: https://github.com/vibhor1997a/nodejs-open-file-explorer
- Homepage: https://github.com/vibhor1997a/nodejs-open-file-explorer#readme
- Issues: https://github.com/vibhor1997a/nodejs-open-file-explorer/issues
- npm.io page: https://npm.io/package/open-file-explorer

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 1.0.2 (latest) — 2018-06-25
- 1.0.1 — 2018-06-25
- 1.0.0 — 2018-06-25

## README

# nodejs-open-file-explorer
This module helps in opening explorer/finder in your OS programatically providing a very simple function to call.

## Installation

1. npm
```sh
npm install open-file-explorer --save
```
2. Yarn
```sh
yarn add open-file-explorer
```

## Usage

```javascript
const openExplorer = require('open-file-explorer');
const path = 'C:\\Users';
openExplorer(path, err => {
    if(err) {
        console.log(err);
    }
    else {
        //Do Something
    }
});
```

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