1.0.7 • Published 7 years ago

meido v1.0.7

Weekly downloads
32
License
-
Repository
-
Last release
7 years ago

MEIDO -- Single / Multi file debugger

install

$ npm install meido babel-cli  -g

quick start

$ meido


:example  // load example file

:hello

:add :random 1 2 3

:notify foo bar

:ter meido // open a new terminal with meido

help // get help 

:q // quit

usage

// load single file:

$ meido {{ your-dir }}/example.js

meido> :js.example.add 100 200 300 400

> 1000

// load all the files in the dir:

$ meido {{ your-dir }}
// also can such:

$ meido

meido> :load {{ you-dir }}

example

// {{ your-dir }}/example.js

export default {
  name: "example",
  completions: [":hello"],
  help:`
    Command:

      :hello         
      :example.hello

  `,
  start() {
    this.hello = () => {
      return 'world'
    }
  },
  hello() {
    return 'world'
  }
}

api

help                             // print help

:q                             // quit
:load [...paths]              // load dir/file
:example                     // load example file
:ter [bin-name]             // open termial
:setPath [name] [path]     // set the path of the permanent
:getPaths                 // list the path of the all
:removePath [name]       // remove the path 

demo

meido

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.2.0

8 years ago

0.1.0

8 years ago