Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

meido

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meido

  • 1.0.7
  • latest
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

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

FAQs

Package last updated on 19 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc