
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Adhering to Atwood's Law, here comes the tmux session manager written for NodeJS similar to tmuxinator and tmuxp
Rudimentary tested with
Other or older versions of tmux are not tested or supported.
npm install -g tmuxn
Usage: tmuxn [--create/--start/--kill/--debug] <project_name>
Options:
-V, --version output the version number
-c, --create <project_name> Create new project with name
-s, --start <project_name> Start project with name
-k, --kill <project_name> Kill project with name
-d, --debug <project_name> Print shell commands of project with name
-p, --project <project_config> Provide project config file
-r, --root <project_root> Provide project root start point
-h, --help output usage information
$XDG_CONFIG_HOME/tmuxn or ~/.tmuxn)$EDITOR# ~/.tmuxn/sample.yml
name: sample
root: ~/
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: mongod
# Project hooks
# Runs on project start, always
# on_project_start: command
# Run on project start, the first time
# on_project_first_start: command
# Run on project start, after the first time
# on_project_restart: command
# Run on project exit ( detaching from tmux session )
# on_project_exit: command
# Runs in each window and pane before window/pane specific commands.
# Useful for setting up interpreter versions.
# pre_window: nvm use --lts
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup.
# If not set, the first window is used.
# startup_window: editor
# Specifies (by index) which pane of the specified window will be selected on project startup.
# If not set, the first pane is used.
# startup_pane: 1
# Controls whether the tmux session should be attached to automatically. Defaults to true.
# attach: false
# Runs after everything. Use it to attach to tmux with custom options etc.
# post: tmux -CC attach -t sample
windows:
- editor:
layout: main-vertical
# Synchronize all panes of this window after the pane commands.
# synchronize: after
panes:
- vim
- mongo
- server: node app.js
- logs: tail -f access.log
FAQs
tmux session manager written for NodeJS
We found that tmuxn demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.