babel-plugin-run-comment-code

convert comments to code

Usage no npm install needed!

<script type="module">
  import babelPluginRunCommentCode from 'https://cdn.skypack.dev/babel-plugin-run-comment-code';
</script>

README

Babel-Plugin-Run-Comment-Code

Run the code in the comments

NPM version

Example

// begin
// code>>console.log('begin')
let str = 'hello world';
// code>>str = 'Hello World';
console.log(str);

↓ ↓ ↓ ↓ ↓ ↓

//begin
console.log('begin')
let str = 'hello world';
str = 'Hello World';
console.log(str);

Usage

npm install babel-plugin-run-comment-code -D

Via .babelrc or babel-loader

{
    "plugins": ["run-comment-code"]
}

Note

It is not recommended to use this plugin in a production environment, the purpose of this plugin is just for debugging