Crates.io | alpakr-cli |
lib.rs | alpakr-cli |
version | 0.2.3 |
source | src |
created_at | 2022-03-26 08:04:43.909813 |
updated_at | 2022-04-21 12:54:49.683644 |
description | Alpakr CLI 🦙 a package lookup tool for: crates, npm, pypi, and more. |
homepage | |
repository | |
max_upload_size | |
id | 556598 |
size | 37,823 |
A simple package lookup service that isn't too strict about its inputs. Paste a snippet of names and Alpakr will do it's best to provide info about the packages.
Conjugation of 'All' and 'Packager' and pronounced the friendly fury alpaca.
\ ăl-păk′ə \
cargo install alpakr-cli
Copy paste a fragment from a Cargo.toml, package.json or python requirments.txt file and pipe it to alpakr
.
$ echo "
console = "0.15.0"
base64 = "0.13.0"
serde = { version = "1.0", features = ["derive"] }" | alpakr
Example output:
console -> A terminal and console abstraction for Rust
https://crates.io/crates/console
base64 -> encodes and decodes base64 as bytes or utf8
https://crates.io/crates/base64
serde -> A generic serialization/deserialization framework
https://crates.io/crates/serde
Note: for best result paste at least one full line, but more is better.
$ grep -A 3 "console" Cargo.toml | alpakr
$ alpakr <enter>
console = "0.15.0"
base64 = "0.13.0"
serde = { version = "1.0", features = ["derive"] }
<ctrl-d>
# If you are on Mac use `pbpaste`
$ pbpaste | alpakr
--verbose
: see encoded payload and full response--json
: output as JSONIn short. I read a lot of code in many different languages. Part of that is looking into what third party packages are used. This can be by reading package.json files or skimming through the text when compiling a Rust program. I wanted to make it easier to learn about packages I don't know about.