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

babel-plugin-console-prepend

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-console-prepend

A simple transform that prepends uncommited console.log calls with a string

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-console-prepend

build status

A simple transform that prepends uncommited console.log calls with a string

Install

$ npm i --save-dev babel-plugin-console-prepend babel-cli

Example

Transforms

console.log(val); // this line has been committed
console.log(val); // this line has not been committed

to

console.log(val); // this line has been committed
console.log('prefix', val); // this line has not been committed

Usage

.babelrc
{
  "plugins": ["console-prepend"],
}

Set plugin options using an array of [pluginName, optionsObject].

{
  "plugins": [["console-prepend", { "prefix": "I wrote this" }]],
}
Babel CLI
$ babel --plugins console-prepend script.js
Babel API
require('babel-core').transform('code', {
  'plugins': ['console-prepend'],
});

Keywords

FAQs

Package last updated on 05 May 2017

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