SkillAgentSearch skills...

Locus

Locus is a debugging module for node.js

Install / Use

/learn @alidavut/Locus
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ʆ Locus

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

asciicast

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.

Related Skills

View on GitHub
GitHub Stars306
CategoryDevelopment
Updated3mo ago
Forks18

Languages

JavaScript

Security Score

82/100

Audited on Jan 2, 2026

No findings