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
locus alternatives and similar modules
Based on the "Debugging / Profiling" category.
Alternatively, view locus alternatives based on common mentions on social networks and blogs.
-
debug
A tiny JavaScript debugging utility modelled after Node.js core's debugging technique. Works in Node.js and web browsers -
why-is-node-running
Node is running but you don't know why? why-is-node-running is here to help you. -
llnode
An lldb plugin for Node.js and V8, which enables inspection of JavaScript states for insights into Node.js processes and their core dumps. -
swagger-stats
API Observability. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices. -
thetool
thetool is a CLI tool to capture different cpu, memory and other profiles for your node app in Chrome DevTools friendly format
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
Promo
surveyjs.io

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of locus or a related project?
Popular Comparisons
README
ʆ Locus
Locus is a debugging module which allows you to execute commands at runtime via a REPL.
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.