npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

newsh

v0.7.4

Published

cross-platform library to execute commands in a new shells

Downloads

51

Readme

Sometimes a certain development environment requires more than a single terminal window, so you open a new one, or even better, split into multiple panes. This happens because nowadays, we have many interactive CLI apps that take the whole terminal window. In those cases, we'll see an explanation in the README that instructs us which commands should we run.

The main problem with this approach is that the developer is now required to understand multiple commands. Another problem is that we can't make sure that the developer will get the desired developer experience if it requires manual actions. For example, run a command, split panes in the terminal and then run another command.

newsh is here to solve these problems, it lets you configure how many terminal windows, tabs or splits you need and what commands to run in each one. It does its best effort to use features that your own terminal provides, like splitting panes. But worry not, in case a feature is not available, a regular terminal window is guaranteed to be opened.

Features

  • 🌏 Cross-platform
  • 🗃 Opens the new shell in current working directory
  • 🎛 Supports splitting (iterm2/tmux/ConEmu/Cmder)
  • 📄 Runs js files with node
  • 🌴 Pass environment parameters to the new shell instance

Installation

You can choose to install using yarn or npm

yarn add --dev newsh
npm install -D newsh

In case you want the newsh command to be available globally:

yarn global add newsh
npm install newsh --global

CLI

Run a command in a new shell

prints "hello world" in a new shell window

newsh "echo 'hello world'"

The new shell will run in the same working directory.

# See for yourself 👀

newsh pwd

You can run multiple shells

newsh "tsc --watch" "jest --watch"

Note that you can use tsc, jest and any other local bin just like in npm/yarn scripts

--split-horizontally

Attempts to split the screen horizontally instead of opening a new tab/window

newsh --split-horizontally "say down"

--split-vertically

Attempts to split the screen vertically instead of opening a new tab/window

newsh --split-vertically "say right"

--split

Alias for --split-vertically

--terminalApp

Choose a specific terminal app to use (e.g. iTerm.app)

--cd

Open the new shell in the specified directory

newsh pwd --cd "~"

--file

Executes a file in a new shell

newsh --file "./script.sh"

Supports running node for javascript files

newsh --file "./script.js"

Node API

possible options for the command and file methods

type Options = {
  env?: Record<string, string> = {}; // Environment parameters that would be passed to the new shell
  cwd?: string = process.cwd(); // Where the newsh command should run (use for joining relative paths of files))
  cd?: string = process.cwd(); // A path to a directory that the new shell will use
  split?: boolean = false; // Attempts to split the terminal window
  splitDirection?: "vertically" | "horizontally" = "vertically"; // The direction of splitting (only works when `split: true`)
  terminalApp?: string | undefined = $TERM_PROGRAM; // Use a specific terminal app
};

command

Run a command in a new shell

command(script: string, options: Options): void

file

Executes a file in a new shell

file(scriptPath: string, options: Options): void

Development

# install
yarn
# compile
yarn watch
# test
yarn test

Contributing

If you find a bug or want this project to provide better support for a certain terminal application, please open an issue. You are more than welcome to create pull requests as well.

Future

  • Controll the focus of the terminal window
  • Better split integration with other terminals