Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appear

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appear

  • 1.2.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Appear

Appear your terminal programs in your gui!

GitHub repo Build Status Gem Version

Docs: current gem, github master, your branch: bundle exec rake doc

screenshot demo thing

Appear is a tool for revealing a given process in your terminal. Given a process ID, appear finds the terminal emulator view (be it a window, tab, or pane) containing that process and shows it to you. Appear understands terminal multiplexers like tmux, so if your target process is in a multiplexer session, appear will reveal a client connected to that session, or start one if needed.

This project intends to support all POSIX operating systems eventually, but currently only supports macOS.

usage

Usage: appear [OPTION]... [PID]
Appear PID in your user interface.
Appear will use the current process PID by default.

Options:
    -l, --log-file [PATH]            log to a file
    -v, --verbose                    tell many tales about how the appear process is going
        --record-runs                record every executed command as a JSON file in the appear spec folder
        --version                    show version information, then exit
    -?, -h, --help                   show this help, then exit

Exit status:
  0  if successfully revealed something,
  1  if an exception occurred,
  2  if there were no errors, but nothing was revealed.

supported terminal emulators

macOS:

  • iTerm2
  • Terminal

cross-platform:

  • tmux

GNU Screen support is a non-goal. It's time for screen users to switch to tmux.

system requirements

  • ruby >= 1.9.3
  • lsof command
  • ps command
  • pgrep command
  • if you're a mac, then you should have macOS >= 10.10

Appear depends only on the Ruby standard library.

how it works

Here's how Appear works in a nutshell, given a target_pid

  1. get all the parent processes of target_pid, up to pid1. We end up with a list of ProcessInfos, which have fields {pid, parent_pid, command, name}
  2. go through our list of "revealers", one for each terminal emulator (tmux, iterm2, terminal.app) and ask the revealer if it can apply itself to the process tree.
  3. if a revealer finds an associated process in the tree (eg, tmux revealer finds the tmux server process), it performs its reveal action
  • this usually involves invoking lsof on a /dev/ttys* device to see what processes are talking on what ttys to each other, which takes a bunch of time
  • lsof in Appear is parallel, so grouped lsof calls are less expensive
  • the Tmux revealer is smart enough to both focus the pane that the target_pid is running in, AND to recurse the revealing process with the tmux client id, to reveal the tmux client.
  1. the revealer sends some instructions to the terminal emulator that contains the view for the PID
  • for our Mac apps, this involves a helper process using Javascript for Automation, a JavaScript x Applescript crossover episode.
  • for tmux this is just some shell commands, super easy.

ruby api

The method documented here is the only part of Appear that should be considered stable.

require 'appear'

# super simple
Appear.appear(pid)

# You may customize logging, if needed, using the Config class
config = Appear::Config.new

# print debug info to STDOUT
config.silent = false
# also write to a log file
config.log_file = '/tmp/my-app-appear.log'

Appear.appear(pid, config)

contributing

First, get yourself set up:

  1. make sure you have bundler. gem install bundler
  2. inside a git clone of the project, run ./scripts/setup or bundle install

Then, submit PRs from feature branches for review:

  1. git checkout -b my-name--my-branch-topic
  2. write code
  3. run ./scripts/console for a nice pry session with an instance ready to go
  4. run bundle exec rake to run tests and doc coverage
  5. commit and push your changes, however you do
  6. open a PR against airbnb master

FAQs

Package last updated on 23 Aug 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc