Popularity
3.2
Stable
Activity
0.0
Stable
306
12
18

Monthly Downloads: 0
Programming language: JavaScript
License: GNU Lesser General Public License v3.0 only
Tags: Debugging / Profiling     Line     Debugger     Debug     Injection     Repl    

locus alternatives and similar modules

Based on the "Debugging / Profiling" category.
Alternatively, view locus alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of locus or a related project?

Add another 'Debugging / Profiling' Module

README

ส† Locus

Locus is a debugging module which allows you to execute commands at runtime via a REPL.

[asciicast](screenshot.png)

Installing

npm install locus --save-dev

Using

require('locus');

var myVar = 123;
var myObj = {
  key: 'value'
};

function makeSomething() {
  var some = 'some value';

  // will start a repl session
  // you can manipulate the program at runtime
  eval(locus);

  // another option
  eval(require('locus'))

  return some;
}

makeSomething();

Use exit command to leave.