@pace11/passq
v1.4.1
Published
Password Manager CLI
Maintainers
Readme
Getting Started 🚀

PassQis Password Manager CLI with commander.js and SQLite3- Key Features
- Insert an existing password or generate one randomly using
PassQ✅ - Display a list of passwords or specific by ID ✅
- Delete a password ✅
- Insert an existing password or generate one randomly using
Installing
Using NPM
# install globally
$ npm i -g @pace11/passqCommand #️⃣
- Insert an existing password
# insert with existing password
$ passq create --title <title> --password <password>
Data created ✅ { id: 1, title: 'password', password: 'admin123' }
# insert with generate password randomly
$ passq create --title <title>
Data created ✅ { id: 1, title: 'password', password: 'BIA%m)JJf4Y' }- Display a list of password or specific by id
# display a list of password
$ passq list --all
Total: 2 data
┌─────────┬────┬────────────┬───────────────┬───────────────────────┐
│ (index) │ id │ title │ password │ last_updated │
├─────────┼────┼────────────┼───────────────┼───────────────────────┤
│ 0 │ 1 │ 'password' │ 'admin123' │ '2025-01-21 06:29:33' │
│ 1 │ 2 │ 'password' │ 'BIA%m)JJf4Y' │ '2025-01-21 06:30:25' │
└─────────┴────┴────────────┴───────────────┴───────────────────────┘
# display specific by id
$ passq list --id <id>
Total: 1 data
┌─────────┬────┬────────────┬────────────┬───────────────────────┐
│ (index) │ id │ title │ password │ last_updated │
├─────────┼────┼────────────┼────────────┼───────────────────────┤
│ 0 │ 1 │ 'password' │ 'admin123' │ '2025-01-21 06:29:33' │
└─────────┴────┴────────────┴────────────┴───────────────────────┘- Delete a password
# display a password by id
$ passq delete --id <id>
Data deleted ✅How secure is the generated password ?
- Result from Password Monster

