Socket
Socket
Sign inDemoInstall

node-tmux

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-tmux

Lightweight tmux session management wrapper


Version published
Weekly downloads
19
decreased by-53.66%
Maintainers
1
Install size
22.2 kB
Created
Weekly downloads
 

Readme

Source

node-tmux

This library allows you to manage your tmux sessions from node, using an easy to use API.

Installation & usage

First, make sure the machine you are going to run this on has tmux installed. When tmux cannot be found, trying to obtain the tmux reference will fail (See below).

You can install this package from npm

npm install --save node-tmux

Obtaining tmux instance

In order to execute any tmux commands, the library has to validate the existance of tmux first. In order to retrieve an instance of tmux, use the following

import {tmux} from 'node-tmux';

tmux().then(tm => {

	// Use your tm instance

}).catch(() => {

	// Command not found

});

API

node-tmux currently supplies the following methods:

  • newSession(name: string, command?: string) - Creates a new tmux session with the given name
  • listSessions() - Returns an array listing all session names
  • hasSession(name: string) - Returns whether a session by the given name exists
  • killSession(name: string) - Kills the session with the given name
  • renameSession(name: string, newName: string) - Renames the session with the given name
  • writeInput(name: string, print: string, newline: boolean = false) - Write the specified string to the given session. Set newline to true to write a newline after this string (Usually triggers command execution).

Compiling

In case you want to compile this project for yourself, simply use npm run build, this will output the compiled javascript files in /lib

Keywords

FAQs

Last updated on 15 Oct 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc