
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Tnnl is a command-line utility for wrangling SSH tunnels.
Unlike most SSH tunnel utilities I've come across, Tnnl will not clutter your
filesystem with a preferences YAML file. Instead it will try to make use of your
native SSH config (at ~/.ssh/config
for most folks).
This project is still in an early/alpha state. You have been warned. :)
Open an SSH tunnel between local port 1234 and port 5678 on the remote host
mysql.spatula.grommet
. If local port 1234 is unavailable, Tnnl will increment
by 1 until it finds an open port.
$ tnnl 1234:admin@mysql.spatula.grommet:3306
You can omit the local port number, and Tnnl will try to use the same port for the local and remote hosts.
$ tnnl admin@mysql.spatula.grommet:3306
If you have defined a host alias in your SSH config, you can save yourself some keystrokes by referencing that alias.
$ tnnl db:3306
Use tnnl list
to list all open SSH tunnels that were created by Tnnl.
$ tnnl list
1. localhost:3307 ==> mysql.spatula.grommet:3306
2. localhost:3000 ==> 123.45.67.89:3000
3. localhost:666 ==> chunkybacon.gov:666
You can use the index numbers referenced in tnnl list
to close 1 or more
tunnels.
$ tnnl close 2
$ tnnl close 1 3
Or close all tunnels created by Tnnl.
$ tnnl close all
StrictHostKeyChecking
preference
is not supported, so Tnnl errs on the safe side and prompts you to update
~/.ssh/known_hosts when a modified host key is detected. Feel free to open an
issue and/or submit a pull request if this is ruining your day.FAQs
Unknown package
We found that tnnl 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
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.