Sign In

stik-cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stik-cli - npm Package Compare versions

Comparing version
0.2.1
to
0.2.2
dist/linux-arm64/stik

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

+2
-2

@@ -37,6 +37,6 @@ 'use strict';

console.error(
'stik currently ships a macOS arm64 binary. On other platforms, build from'
'stik ships macOS arm64 and Linux x64/arm64 binaries. On other platforms,'
);
console.error(
'source (needs Go 1.26+ and libpcap):'
'build from source (needs Go 1.26+ and libpcap):'
);

@@ -43,0 +43,0 @@ console.error(

{
"name": "stik-cli",
"version": "0.2.1",
"version": "0.2.2",
"description": "Passive network watcher — tells you in plain English what's on your network, and taps you on the shoulder when something new shows up.",

@@ -38,6 +38,8 @@ "keywords": [

"os": [
"darwin"
"darwin",
"linux"
],
"cpu": [
"arm64"
"arm64",
"x64"
],

@@ -44,0 +46,0 @@ "engines": {

@@ -32,3 +32,3 @@ # stik

```bash
# npm (macOS arm64 — ships a prebuilt binary, no toolchain needed)
# npm (macOS arm64, Linux x64/arm64 — ships prebuilt binaries, no toolchain needed)
npm install -g stik-cli

@@ -44,3 +44,3 @@

On Debian/Ubuntu, building from source needs the pcap headers: `sudo apt install libpcap-dev`.
On Debian/Ubuntu, building from source needs the pcap headers: `sudo apt install libpcap-dev`. The prebuilt Linux binaries link `libpcap` dynamically, so a runtime host needs the shared library — `sudo apt install libpcap0.8` (already present on most desktops).

@@ -47,0 +47,0 @@ Packet capture requires elevated privileges. On macOS you can grant your user access to the BPF devices once (Wireshark's *ChmodBPF* helper does this) instead of running as root; otherwise run stik with `sudo`.

Sorry, the diff of this file is not supported yet