# isexe

> Minimal module to check if a file is executable.

Latest version **4.0.0** (published 2026-02-09) · BlueOak-1.0.0 license · 0 weekly downloads

## Install

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

## Health

**Score 60/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2026-02-09 |
| First published | 2016-01-17 |
| Weekly downloads | 0 |
| License | BlueOak-1.0.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=20 |
| Dependencies | 0 |
| Unpacked size | 62.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 52 |
| Author | Isaac Z. Schlueter |
| Maintainers | isaacs |

## Links

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

## Recent versions

- 4.0.0 (latest) — 2026-02-09
- 3.1.5 — 2026-02-09
- 3.1.4 — 2026-02-08
- 3.1.3 — 2026-02-07
- 3.1.2 — 2026-02-05
- 3.1.1 — 2023-08-02
- 3.1.0 — 2023-07-30
- 3.0.0 — 2023-07-30
- 2.0.0 — 2017-03-23
- 1.1.2 — 2016-02-09
- 1.1.1 — 2016-01-26
- 1.1.0 — 2016-01-26
- 1.0.1 — 2016-01-20
- 1.0.0 — 2016-01-17

## README

# isexe

Minimal module to check if a file is executable, and a normal file.

Uses `fs.stat` and tests against the `PATHEXT` environment variable on
Windows.

## USAGE

```js
// default export is a minified version that doesn't need to
// load more than one file. Load the 'isexe/raw' export if
// you want the non-minified version for some reason.
import { isexe, sync } from 'isexe'
// or require() works too
// const { isexe } = require('isexe')
isexe('some-file-name').then(
  isExe => {
    if (isExe) {
      console.error('this thing can be run')
    } else {
      console.error('cannot be run')
    }
  },
  err => {
    console.error('probably file doesnt exist or something')
  },
)

// same thing but synchronous, throws errors
isExe = sync('some-file-name')

// treat errors as just "not executable"
const isExe = await isexe('maybe-missing-file', { ignoreErrors: true })
const isExe = sync('maybe-missing-file', { ignoreErrors: true })
```

## API

### `isexe(path, [options]) => Promise<boolean>`

Check if the path is executable.

Will raise whatever errors may be raised by `fs.stat`, unless
`options.ignoreErrors` is set to true.

### `sync(path, [options]) => boolean`

Same as `isexe` but returns the value and throws any errors raised.

## Platform Specific Implementations

If for some reason you want to use the implementation for a
specific platform, you can do that.

```js
import { win32, posix } from 'isexe'
win32.isexe(...)
win32.sync(...)
// etc

// or:
import { isexe, sync } from 'isexe/posix'
```

The default exported implementation will be chosen based on
`process.platform`.

### Options

```ts
import type IsexeOptions from 'isexe'
```

- `ignoreErrors` Treat all errors as "no, this is not
  executable", but don't raise them.
- `uid` Number to use as the user id on posix
- `gid` Number to use as the group id on posix
- `pathExt` List of path extensions to use instead of `PATHEXT`
  environment variable on Windows.

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