weaver v0.3.1
Weaver
Interactive process management system for node.js
Installation
# Global
npm -g install weaver
# Local
npm install weaverIf you have chosen local installation, check your PATH environment variable. npm creates symlinks to
all binaries in node_modules/.bin hidden folder. So you may want to prepend it to PATH.
Usage
weaver [--port <number>] [--config <path>] [--debug]
weaver [--port <number>] [--config <path>] upgrade
weaver [--port <number>] restart [[task|pid], ...]
weaver [--port <number>] stop [[task|pid], ...]
weaver [--port <number>] kill <signal> [[task|pid], ...]
weaver [--port <number>] drop <task>
weaver [--port <number>] [--nocolor] status
weaver [--port <number>] [--nocolor] dump
weaver [--port <number>] monitor
weaver [--port <number>] exitCommands
upgradeExtend configuration with tasks from configuration filerestartRestart all tasks, task group, task by pidstopStop all tasks, task group, task by pidkillSend signal to task group or task by piddropStop task group and remove it from configurationstatusShow status for all tasksdumpShow current configurationmonitorStream log messages from daemonexitStop all tasks and exit
Options
--config Configuration file [default: weaver.json]
--debug Do not fork and give additional output
--nocolor Do not use colors for output
--help Show help and exit
--version Show version and exit
--port Use specified port [default: 8092]Also WEAVER_PORT and WEAVER_DEBUG environment variables can be used to set options, but
command line options have higher priority.
Configuration example
{
"path": "..",
"tasks": {
"web": {
"count": 2,
"source": "lib/main.js",
"persistent": false,
"arguments": ["--web", "--port", [8001, 8002]],
"watch": ["lib/**/*.js", "config/default.js", "config/local.json"],
"env": {
"NODE_ENV": "local"
}
},
"worker": {
"count": 1,
"timeout": 2000,
"source": "lib/main.js",
"persistent": false,
"arguments": ["--worker"],
"watch": ["lib/worker/*.js"],
"env": {
"NODE_ENV": "local"
}
},
"redis": {
"count": 1,
"source": "redis-cli",
"executable": true,
"arguments": ["monitor"]
}
}
}With such config file weaver will run three processes and restart them when one of watched files is modified. Fourth process will send commands from redis in monitor mode to log. Processes are organized in three groups and can be managed by group name. For example to restart web processes you need to say
weaver restart weband to stop redis monitor
weaver stop redisProcesses in the web group get different command line arguments but similar environment. By default tasks have access to PATH, NODE_PATH and HOME
environment variables. NODE_PATH is set automatically only when executable flag is not set.
Bash commands to start processes manually in same way as weaver does in example above
NODE_ENV="local" node ../lib/main.js --web --port 8001
NODE_ENV="local" node ../lib/main.js --web --port 8002
NODE_ENV="local" node ../lib/main.js --worker
redis-cli monitorConfiguration file structure
pathPath to working directory, relative to configuration file or absolute. OptionaltasksTask groupscountTask count for group. Can be zerosourceSource file or executable for task group. Relative tocwdor absolutepersistentRestart task on unclean exit. Defaults to false. Boolean. OptionalexecutableSource is executable itself and v8 instance is not needed to run it. Defaults to false. Boolean. OptionalargumentsArguments for tasks in task group. Nested array should have length equal to task count. OptionalenvEnvironment variables for task group. OptionalwatchRestart all tasks in task group when one of watched files was modified. OptionaltimeoutTimeout between SIGINT and SIGTERM for stop and restart commands. Defaults to 1000ms. OptionalruntimeMinimal runtime required for persistent task to be restarted after unclean exit. Defaults to 1000ms. OptionalcwdTask group working directory. Relative topathor absolute. Optional
Configuration file is validated with JSON Schema from file lib/schema.json.
Logs
Weaver will collect logs for you and send anything from subtasks stdout and stderr to udp4:localhost:8092 (or any other port of your choice). In debug mode this functionality is disabled and logs are printed to stdout. To do something with this logs you can use monitor mode
weaver monitorOr any other program capable to capture udp
socat udp4-listen:8092 stdoutCopyright and License
Copyright 2012-2016 Alexander Nazarov. All rights reserved.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
12 years ago
12 years ago
12 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago