babel-plugin-run-comment-code
v1.0.3
Published
convert comments to code
Downloads
4
Readme
Babel-Plugin-Run-Comment-Code
Run the code in the comments
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