Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1.8 KiB
1.8 KiB
callsites 
Get callsites from the V8 stack trace API
Install
$ npm install callsites
Usage
const callsites = require('callsites');
function unicorn() {
console.log(callsites()[0].getFileName());
//=> '/Users/sindresorhus/dev/callsites/test.js'
}
unicorn();
API
Returns an array of callsite objects with the following methods:
getThis: returns the value ofthis.getTypeName: returns the type ofthisas a string. This is the name of the function stored in the constructor field ofthis, if available, otherwise the object's[[Class]]internal property.getFunction: returns the current function.getFunctionName: returns the name of the current function, typically itsnameproperty. If a name property is not available an attempt will be made to try to infer a name from the function's context.getMethodName: returns the name of the property ofthisor one of its prototypes that holds the current function.getFileName: if this function was defined in a script returns the name of the script.getLineNumber: if this function was defined in a script returns the current line number.getColumnNumber: if this function was defined in a script returns the current column numbergetEvalOrigin: if this function was created using a call toevalreturns a string representing the location whereevalwas called.isToplevel: is this a top-level invocation, that is, is this the global object?isEval: does this call take place in code defined by a call toeval?isNative: is this call in native V8 code?isConstructor: is this a constructor call?
License
MIT © Sindre Sorhus