adm-panel2
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

admin-panel-ii

A management panel for Node processes. ⚡️


TODO

  • Add proccess memory stats (client + back)
  • CLI CMD
  • WebDAV CMD [halfway]
  • WS CMD

Commands

  • kill[ interval\<Number> [exitCode\<Number>]]
  • exit - Closes CLI.
  • clear - Clears console.
  • sock event<String> message<String> - Sends message to sockets.
  • help[ command<String>] - Receive help for a command.
  • catch - Catch unknown command errors.
  • eval - Evaluate a JS snippet.
  • syscall code<String> - new, perform a system call.

Type .h in CLI for more (accurate) details.

Usage

const Panel = require("adm-panel2");
 
Panel.setup().then(panel => {
    panel.toggleStats(); //every 1s, take memory snap
    panel.cli({ input: process.stdin, output: process.stdout }); //type '.' (default prefix) and hit 'tab' for completion.
    panel.start().then(() => console.log("Started.")); //hosted by default on http://admin:adm@localhost:9999/panel
});

Latest features

  • Keeps logs history.

External Dependencies

  • chalk (optional)
  • fs-extra
  • socket.io
  • client-side: Plotly.js

Based on vale-server-ii

Modules that depend on adm-panel2

A trick for process restarting: Add a restarting field in scripts of package.json with body of "restarting": "node index.js || npm run restarting", this way you can have the system relaunch your task upon non-zero exit codes. Reload the process by having an fs.Watcher watch for file changes and emitting a .kill 0 2 to the panel.

Package Sidebar

Install

npm i adm-panel2

Weekly Downloads

0

Version

1.0.4

License

ISC

Unpacked Size

3.52 MB

Total Files

95

Last publish

Collaborators

  • valentin_h