Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
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

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

  • 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