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

isexe

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

isexe

Minimal module to check if a file is executable.

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
58M
decreased by-8.01%
Maintainers
1
Weekly downloads
 
Created

What is isexe?

The isexe npm package is used to check if a file is executable. It provides a simple interface to determine whether a given file path points to an executable file, based on the file's permissions and metadata. This can be particularly useful in build scripts, CLI tools, or any Node.js application that needs to validate file executability before proceeding with operations like launching a subprocess.

What are isexe's main functionalities?

Check if a file is executable

This feature allows you to check asynchronously if a specific file is executable. It uses a callback function to return the result.

const isexe = require('isexe');

isexe('/path/to/file', function(err, isExecutable) {
  if (err) return console.error(err);
  console.log(isExecutable ? 'Executable' : 'Not executable');
});

Synchronous check for file executability

This feature provides a synchronous way to check if a file is executable, which can be useful in scripts where asynchronous operations are not desired.

const isexe = require('isexe');

try {
  const isExecutable = isexe.sync('/path/to/file');
  console.log(isExecutable ? 'Executable' : 'Not executable');
} catch (err) {
  console.error(err);
}

Check executability with options

This feature demonstrates how to use the `isexe` package with options to customize the behavior of the executability check. For example, specifying `pathExt` option on Windows to consider certain file extensions as executable.

const isexe = require('isexe');

const options = { pathExt: '.EXE' }; // Example option for Windows environments

isexe('/path/to/file', options, function(err, isExecutable) {
  if (err) return console.error(err);
  console.log(isExecutable ? 'Executable' : 'Not executable');
});

Other packages similar to isexe

FAQs

Package last updated on 30 Jul 2023

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