Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alsiola/pm2-explorer
Manage PM2 from within VSCode
https://github.com/alsiola/pm2-explorer
pm2 vscode vscode-extension
Last synced: 2 months ago
JSON representation
Manage PM2 from within VSCode
- Host: GitHub
- URL: https://github.com/alsiola/pm2-explorer
- Owner: alsiola
- License: mit
- Created: 2018-10-03T20:21:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:02:51.000Z (about 2 years ago)
- Last Synced: 2023-03-02T06:07:19.244Z (almost 2 years ago)
- Topics: pm2, vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=alex-young.pm2-explorer
- Size: 708 KB
- Stars: 80
- Watchers: 3
- Forks: 4
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
![Build Status](https://travis-ci.com/alsiola/pm2-explorer.svg?branch=master)
# PM2 Explorer README
View and interact with currently running PM2 processes within VSCode. This extension can be installed from within VSCode by searching for `pm2` in the extensions view, or via the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=alex-young.pm2-explorer)
## Features
Adds a PM2 Explorer view that lists current PM2 processes and important details about them. The list is updated at a configurable interval (default 1000ms).
Allows interaction with individual running processes:
* Start
* Stop
* Restart
* View Logs (in integrated terminal)And with *all* running processes:
* Reload all
* View all logs
* Start all processes
* Stop all processes## Requirements
PM2 should be installed globally on your machine.
## Extension Settings
The following configuration settings are provided by PM2 explorer:
```
// How frequently (in milliseconds) should the process list update
"pm2Explorer.refreshIntervalMs": 1000
```## Known Issues
No known issues
## Release Notes
### 0.0.7
* Fix commands when tasks have whitespace
* Dependency vulnerability updates### 0.0.6
* Restore accidentally removed container icon
### 0.0.5
* Re-publish broken CI deployment
### 0.0.4
* Improved process icons
* Configurable refresh interval
* Added start all and stop all commands
* Refactor and re-organisation### 0.0.3
* Visual representation of process state
### 0.0.2
* Fix errors in readme
* Add logo### 0.0.1
* Initial release of PM2 Explorer