electron-memory-profiler
SolidProfile Electron app memory usage, detect leaks, analyze renderer process memory, and optimize memory consumption
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# electron-memory-profiler
Profile Electron application memory usage, detect memory leaks, and analyze renderer process memory consumption. This skill provides tools and techniques for identifying memory issues and optimizing memory usage in Electron applications.
## Capabilities
- Profile main process and renderer process memory usage
- Detect memory leaks through heap snapshots
- Analyze garbage collection patterns
- Monitor V8 heap statistics
- Track DOM node and event listener counts
- Generate memory usage reports over time
- Identify common memory leak patterns
- Provide optimization recommendations
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": {
"type": "string",
"description": "Path to the Electron project root"
},
"profilingMode": {
"enum": ["snapshot", "timeline", "leak-detection", "comparison"],
"default": "snapshot"
},
"targetProcess": {
"enum": ["main", "renderer", "all"],
"default": "all"
},
"duration": {
"type": "number",
"description": "Duration in seconds for timeline profiling",
"default": 60
},
"snapshotInterval": {
"type": "number",
"description": "Interval between snapshots in milliseconds",
"default": 5000
},
"generateReport": {
"type": "boolean",
"default": true
}
},
"required": ["projectPath"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": {...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
memory-leak-detector
Detect memory leaks in desktop applications through heap analysis and object tracking
1,160 Updated today
a5c-ai AI & Automation Solid
performance-profiler
Profile application performance including CPU, memory, and flame graph generation
1,160 Updated today
a5c-ai AI & Automation Solid
nodejs-profiling
Expert skill for Node.js-specific profiling and optimization. Use V8 CPU profiler, analyze heap snapshots, configure clinic.js tools (Doctor, Flame, Bubbleprof), debug event loop blocking, analyze async hooks performance, and optimize V8 JIT compilation.
1,160 Updated today
a5c-ai AI & Automation Solid
startup-time-profiler
Profile and optimize application startup time for desktop applications
1,160 Updated today
a5c-ai AI & Automation Solid
memory-analysis
Embedded memory analysis, optimization, and leak detection
1,160 Updated today
a5c-ai