MEIDO -- Single / Multi file debugger
install
$ npm install meido babel-cli -g
quick start
$ meido
:example
:hello
:add :random 1 2 3
:notify foo bar
:ter meido
help
:q
usage
$ meido {{ your-dir }}/example.js
meido> :js.example.add 100 200 300 400
> 1000
$ meido {{ your-dir }}
$ meido
meido> :load {{ you-dir }}
example
export default {
name: "example",
completions: [":hello"],
help:`
Command:
:hello
:example.hello
`,
start() {
this.hello = () => {
return 'world'
}
},
hello() {
return 'world'
}
}
api
help
:q
:load [...paths]
:example
:ter [bin-name]
:setPath [name] [path]
:getPaths
:removePath [name]
demo
![meido](./meido.gif)