Skip to content

Manage passwords through Raycast that just your and your computer know.

Notifications You must be signed in to change notification settings

paul-bokelman/raypass

Repository files navigation

RayPass

Manage passwords through Raycast that just you and your laptop know.

RayPass is a local password manager. Passwords are stored locally on the users hard disk in "documents". A user can create one or many documents, optionally encrypt them, then make as many password records as they please inside them. Users can create, delete, search, and switch between documents. A user can also create, edit, delete, or copy each individual field of a password record.

Screen.Recording.2022-10-03.at.11.43.38.PM.mov

Features

  • General

    • Unlimited number of documents and records (your hard drive is the limit)
    • Designed to not waste your time - Fast workflow and lookup
  • Documents

    • Create, delete, switch between, and search documents
    • Optionally encrypt (AES-256) document and access with a password
  • Records

    • Create, edit, delete, and search records
    • Copy each individual field to clipboard and Open URL in browser
    • Favicon from URL is automatically fetched and displayed

Understanding the components

Documents

Documents are locally stored files that contain your passwords. You can create, optionally encrypt, and switch between documents to manage your passwords.

Records

Records are the actual passwords that you want to store. You can create, edit, and delete records inside an individual document. Each record follows the following format:

export interface Record {
  id: string;
  name: string;
  username?: string;
  email?: string;
  password: string;
  secret: string;
  url?: string;
  notes?: string;
}

About

Manage passwords through Raycast that just your and your computer know.

Topics

Resources

Stars

Watchers

Forks