1.0.3 • Published 4 years ago

babel-plugin-run-comment-code v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

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