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

csbox

v1.0.0

Published

πŸ”‘ Csbox - Vanguard terminal password manager

Readme

πŸ”‘ Csbox

Csbox is a modern terminal-based password manager, specially designed for users looking to migrate from the discontinued Dropbox Passwords service.

Why Csbox?

Dropbox discontinued its password management service, leaving many users with exported CSV files containing all their passwords in plain text. This is a serious security risk, anyone who gains access to your computer or backups could read all your passwords without any barrier.

Keeping an unencrypted CSV file with your passwords is extremely dangerous. That's why I created Csbox: to provide a simple way to encrypt and manage those exported passwords locally.

Csbox allows you to:

  • βœ… Easily import your exported Dropbox passwords (CSV format)
  • βœ… Strong encryption using AES-256 to protect your data
  • βœ… Intuitive terminal interface with keyboard navigation
  • βœ… Completely offline - your passwords stay on your machine
  • βœ… Local encrypted database secured with your master password

Features

  • πŸ” Fast search with real-time filtering
  • πŸ“ Full editor to create, edit and organize your passwords
  • 🎨 Modern interface with dark theme and custom colors
  • ⌨️ Keyboard shortcuts for efficient navigation
  • πŸ’Ύ Automatic encrypted saving

Installation

Global Installation

npm install -g csbox

Usage

Import CSV from Dropbox

If you have a CSV file exported from Dropbox Passwords:

csbox exported_dropbox_accounts.csv

The program will ask for a master password that will be used to encrypt all your data. Remember this password! - without it you won't be able to access your accounts.

The CSV should have the following columns:

  • title - Account title
  • website - Website URL
  • login - Username or email
  • password - Password
  • otpSecret - (Optional) Secret for OTP/2FA codes
  • notes - (Optional) Additional notes

Launch the Interface

To open the password manager:

csbox

Enter your master password to unlock the encrypted database.

Keyboard Shortcuts

General Navigation

  • / - Open search
  • ESC - Clear search / Close confirmation dialogs
  • n - Create new account
  • d - Delete selected account (with confirmation)
  • Enter - Edit selected account
  • Tab / Shift+Tab - Navigate between fields
  • ↑ / ↓ - Navigate the list
  • Ctrl+C / q - Quit

In the Editor

  • Enter - Go to next field
  • ESC - Cancel editing
  • Tab - Next field
  • "Save" button - Save changes
  • "Cancel" button - Discard changes
  • "Delete" button - Delete current account (with confirmation)

Security

  • πŸ”’ AES-256 encryption: Your passwords are encrypted with your master password
  • 🚫 No cloud storage: Everything is saved locally in ~/.csbox/db.json
  • πŸ”‘ Single master password: You only need to remember one password
  • πŸ’» No internet connection: Doesn't send data to any server

⚠️ Important

  1. Never lose your master password - there's no way to recover your data without it
  2. Make regular backups of the ~/.csbox/db.json file
  3. The database is stored in your home directory at ~/.csbox/db.json
  4. Use a strong password as your master password

πŸ›‘οΈ Security Disclaimer

This tool was created with the best intentions to help users protect their exported passwords. However, I am not a security expert. While I've implemented industry-standard AES-256 encryption and followed security best practices to the best of my knowledge, I cannot guarantee that this software is free from vulnerabilities.

Use at your own risk. I am not responsible for any data loss, security breaches, or other issues that may arise from using this software. If you have extremely sensitive data or require enterprise-level security guarantees, please consider using professionally audited password management solutions.

That said, using Csbox is significantly safer than keeping your passwords in a plain text CSV file.

Note: This project is not affiliated with Dropbox Inc. It is an independent tool created to help users manage their passwords locally after the discontinuation of the Dropbox Passwords service.

File Structure

Project Files

.
β”œβ”€β”€ index.js            # Main entry point
β”œβ”€β”€ ui.js               # User interface
β”œβ”€β”€ persist.js          # Persistence layer with encryption
β”œβ”€β”€ utils.js            # Utilities
└── theme.js            # Color configuration

User Data

~/.csbox/
└── db.json        # Encrypted database (created automatically)

Migrating from Dropbox Passwords

  1. Export your passwords from Dropbox:

    • Open Dropbox Passwords
    • Go to Settings β†’ Export
    • Save the CSV file
  2. Import to Csbox:

    csbox exported_dropbox_accounts.csv
  3. Enter a secure master password

  4. Done! Your passwords are secure and ready to use

Development

Requirements

  • Node.js 14 or higher

Dependencies

  • blessed - Terminal interface framework
  • crypto-js - AES encryption
  • csv-parse - CSV file parser
  • deepbase - Simple file-based database

🀝 Contributing

Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the GitHub repository.

πŸ“„ License

The MIT License (MIT)

Copyright (c) Martin Clasen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.