Popularity
3.1
Declining
Activity
0.0
Stable
300
11
17
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 -
ndb
ndb is an improved debugging experience for Node.js, enabled by Chrome DevTools -
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. -
longjohn
Long stack traces for node.js inspired by https://github.com/tlrobinson/long-stack-traces -
jstrace
Dynamic tracing for javascript, in javascript (similar dtrace, ktap etc) -
NiM
Streamline Your Node.js Debugging Workflow with Chromium (Chrome, Edge, More) DevTools. -
thetool
thetool is a CLI tool to capture different cpu, memory and other profiles for your node app in Chrome DevTools friendly format -
ctrace
Well-formatted and improved trace system calls and signals (when the debugger does not help)
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.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.