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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tragarz

v1.0.0

Published

Super lightweight Git alternative for solo developers - simple file sync CLI tool

Readme

Tragarz Client

Tragarz Client to narzędzie CLI do synchronizacji plików z serwerem Tragarz.

Instalacja

cd tragarz-client
npm install
npm link  # Instaluje globalnie jako 'tragarz'

Użycie

1. Łączenie z projektem

# Nowy projekt
tragarz connect MojProjekt https://server.url admin123

# Z opisem
tragarz connect MojProjekt https://server.url admin123 --description "Opis projektu"

# Wymuszenie (nadpisanie istniejącej konfiguracji)
tragarz connect MojProjekt https://server.url admin123 --force

2. Wysyłanie zmian (Push)

# Standardowy push
tragarz push

# Z potwierdzeniem automatycznym
tragarz push --yes

# Z wymuszeniem (rozwiązuje konflikty)
tragarz push --force

# Z szczegółami
tragarz push --verbose

3. Pobieranie zmian (Pull)

# Standardowy pull
tragarz pull

# Z wymuszeniem (nadpisuje lokalne pliki)
tragarz pull --force

# Z backupem konfliktowych plików
tragarz pull --backup

# Zachowaj lokalne pliki usunięte na serwerze
tragarz pull --keep-local

4. Zarządzanie snapshot'ami (Memory)

# Stwórz snapshot
tragarz memory "Opis snapshot'a"

# Lista snapshot'ów
tragarz memory --list

# Przywróć snapshot
tragarz memory --restore <snapshot-id>

# Przywróć bez backup'u
tragarz memory --restore <snapshot-id> --no-backup --yes

5. Status projektu

# Pokaż status
tragarz status

# Z dodatkowymi informacjami
tragarz status --verbose

Pliki konfiguracyjne

.tragarz.json

Automatycznie tworzony plik konfiguracji projektu:

{
  "projectName": "MojProjekt",
  "serverUrl": "https://server.url",
  "token": "auth_token",
  "lastSync": "2025-01-20T10:30:00Z",
  "files": {
    "file1.js": "hash123",
    "dir/file2.js": "hash456"
  }
}

.tragarzignore

Plik z wzorcami plików do ignorowania (podobny do .gitignore):

node_modules/
.git/
*.log
.env
dist/

Przykłady użycia

Początkowa konfiguracja

# 1. Połącz z projektem
tragarz connect MojProjekt localhost:8080 admin123

# 2. Wyślij lokalne pliki
tragarz push

# 3. Sprawdź status
tragarz status

Codzienne użycie

# Pobierz zmiany od zespołu
tragarz pull

# Pracuj lokalnie...

# Wyślij swoje zmiany
tragarz push

# Stwórz snapshot przed większymi zmianami
tragarz memory "Przed refaktoryzacją API"

Praca zespołowa

# Pobierz najnowsze zmiany
tragarz pull --backup  # Backup lokalnych zmian

# Rozwiąż konflikty ręcznie, potem:
tragarz push --force  # Wyślij swoje zmiany

Opcje globalnych flag

  • --verbose / -v - Pokaż szczegółowe informacje
  • --yes / -y - Automatyczne potwierdzenie
  • --force / -f - Wymuś operację
  • --help / -h - Pokaż pomoc

Struktura katalogów

tragarz-client/
├── src/
│   ├── cli.js           # Główny CLI
│   ├── config.js        # Zarządzanie .tragarz.json
│   ├── api.js          # Komunikacja z serwerem
│   ├── fileSync.js     # Synchronizacja plików
│   └── commands/       # Implementacje komend
│       ├── connect.js
│       ├── push.js
│       ├── pull.js
│       └── memory.js
├── bin/
│   └── tragarz          # Plik wykonywalny
└── package.json

Funkcje bezpieczeństwa

  • Token-based authentication
  • Hash-based file integrity checking
  • Automatic backup creation
  • Path traversal protection
  • Input validation

Rozwiązywanie problemów

Problemy z połączeniem

# Sprawdź konfigurację
tragarz status

# Połącz ponownie
tragarz connect MojProjekt server.url hasło --force

Konflikty plików

# Backup i pull
tragarz pull --backup

# Lub wymuszenie
tragarz push --force

Reset konfiguracji

rm .tragarz.json .tragarzignore
tragarz connect MojProjekt server.url hasło