You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

shebang-command

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shebang-command

Get the command from a shebang


Version published
Weekly downloads
52M
decreased by-17.53%
Maintainers
1
Created
Weekly downloads
 

Package description

What is shebang-command?

The shebang-command npm package is used to parse the shebang (#!) line of a file to determine which interpreter should be used to execute the file. This is particularly useful when working with scripts in a Node.js environment where you might need to identify the interpreter specified in a script file.

What are shebang-command's main functionalities?

Parse shebang line

This feature allows you to extract the command from the shebang line of a script. The code sample represents a script file with a shebang line that specifies that the script should be run with Node.js.

"#!/usr/bin/env node\nconsole.log('Hello, world!');"

Other packages similar to shebang-command

Readme

Source

shebang-command Build Status

Get the command from a shebang

Install

$ npm install shebang-command

Usage

const shebangCommand = require('shebang-command');

shebangCommand('#!/usr/bin/env node');
//=> 'node'

shebangCommand('#!/bin/bash');
//=> 'bash'

API

shebangCommand(string)

string

Type: string

String containing a shebang.

Keywords

FAQs

Package last updated on 06 Sep 2019

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc