Socket
Book a DemoInstallSign in
Socket

babel-plugin-shebang

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-shebang

Replace or prepend shebang

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
246
-0.4%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-shebang

Build Status CircleCI Coverage Status License

Replace or prepend shebang.

Useful to write #!/usr/bin/env ./node_modules/.bin/babel-node modules in development env, and compile to #!/usr/bin/env node in production env.

Installation

$ npm install babel-plugin-shebang

Example

.babelrc

{
  "plugins": ["shebang"]
}

input

#!/usr/bin/env ./node_modules/.bin/babel-node
console.log("awesome");

output

#!/usr/bin/env node
console.log("awesome");

Usage

.babelrc

{
  "plugins": [
    [
      "shebang",
      {
        "replacement": "#!/usr/bin/env node",
        "force": false
      }
    ]
  ]
}

Options

  • replacement (String): Defaults to #!/usr/bin/env node
  • force (Boolean): Force prepend shebang. Defaults to false

Via CLI

$ babel --plugins shebang script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["shebang"]
});

License

MIT

Keywords

babel-plugin

FAQs

Package last updated on 20 Nov 2018

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.