Source: node-shebang-command Section: javascript Maintainer: Debian Javascript Maintainers Uploaders: Pirate Praveen Build-Depends: debhelper-compat (= 13) , dh-sequence-nodejs , ava , rollup , node-rollup-plugin-node-resolve Standards-Version: 4.7.4 Vcs-Browser: https://salsa.debian.org/js-team/node-shebang-command Vcs-Git: https://salsa.debian.org/js-team/node-shebang-command.git Homepage: https://github.com/kevva/shebang-command Testsuite: autopkgtest-pkg-nodejs Package: node-shebang-command Architecture: all Depends: ${misc:Depends} Breaks: node-shebang-regex (<< 4.0.0~) Replaces: node-shebang-regex (<< 4.0.0~) Provides: ${nodejs:Provides} Multi-Arch: foreign Description: Get the command from a shebang This module provides functionality for retrieving the interpreter command specified in a script's shebang line. It supports shebangs that invoke interpreters directly as well as those that use /usr/bin/env to resolve the executable. The module returns only the command component, enabling higher-level tools to determine the appropriate interpreter for a given script. . A shebang is the character sequence "#!" placed at the beginning of a script to indicate which interpreter should be used to execute it. It typically specifies either a direct path to the interpreter or an invocation through /usr/bin/env for environment-based resolution. . Node.js is an event-based server-side JavaScript engine.