listendev / lstn

A CLI tool to analyze the behavior of your dependencies using listen.dev

Home Page:https://verdicts.listen.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lstn

lstn is the listen.dev command line. It lets you analyze the behavior of your dependencies.

lstn

Documentation

To install lstn in your environment, refer to the installation section below. For usage instructions, see:

Installation

CI

GitHub Actions

We recommend using the GitHub Action for running lstn in CI for GitHub projects. For integration instructions see this guide.

Other CI

It's highly recommended to install a specific version of lstn available on the releases page. Here are a few ways to install it:

# The binary will be /usr/local/bin/lstn
curl -sSfL https://lstn.dev/get | sh -s -- -b /usr/local/bin

# Or install it into $PWD/bin/
curl -sSfL https://lstn.dev/get | sh -s

# In Alpine Linux (as it does not come with curl by default)
wget -O- -nv https://lstn.dev/get | sh -s

You can test the installation by running:

lstn version

Locally

To install lstn locally, see the options below:

Binaries

curl -sSfL https://lstn.dev/get | sh -s -- -b /usr/local/bin
lstn version

macOS

lstn is available via TODO: Homebrew, ..., and as a downloadable binary from our releases page.

Linux & BSD

lstn is available via:

  • TODO: our Debian and RPM repositories
  • OS-agnostic package managers such as TODO: Homebrew, ...
  • our releases pages as precompiled binaries.

From source

We recommend using binary installation. Using go install or go get might work but those aren't guaranteed to.

Why?
  1. Some users use the -u flag for go get which upgrades our dependencies: we can not guarantee they work!
  2. The go.mod replacement directive doesn't apply.
  3. The lstn stability may depend on a user's Go version.
  4. It allows installation from the main branch which can't be considered stable.
  5. It is way slower than binary installation.

Contributing

If anything feels off, or if you feel that some functionality is missing, please check out the contributing page.

There you will find instructions for sharing your feedback, building the tool locally, and submitting pull requests to the project.

About

A CLI tool to analyze the behavior of your dependencies using listen.dev

https://verdicts.listen.dev

License:Apache License 2.0


Languages

Language:Go 97.5%Language:Shell 1.8%Language:HTML 0.7%