{"id":18728370,"url":"https://github.com/fluidtrends/cassi","last_synced_at":"2025-06-15T09:38:11.705Z","repository":{"id":28089201,"uuid":"116209805","full_name":"fluidtrends/cassi","owner":"fluidtrends","description":"Cryptographic Asymmetric Secure Storage Infrastructure","archived":false,"fork":false,"pushed_at":"2023-01-06T05:48:04.000Z","size":797,"stargazers_count":10,"open_issues_count":8,"forks_count":4,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-12T16:59:18.264Z","etag":null,"topics":["aes-encryption","assymetric-security","bcrypt","encryption","password-manager","security","sha256"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fluidtrends.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/security/README.md","support":null}},"created_at":"2018-01-04T03:25:36.000Z","updated_at":"2021-08-30T13:17:03.000Z","dependencies_parsed_at":"2023-01-14T08:06:59.561Z","dependency_job_id":null,"html_url":"https://github.com/fluidtrends/cassi","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fluidtrends/cassi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidtrends%2Fcassi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidtrends%2Fcassi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidtrends%2Fcassi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidtrends%2Fcassi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluidtrends","download_url":"https://codeload.github.com/fluidtrends/cassi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidtrends%2Fcassi/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259952784,"owners_count":22936980,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aes-encryption","assymetric-security","bcrypt","encryption","password-manager","security","sha256"],"created_at":"2024-11-07T14:20:57.531Z","updated_at":"2025-06-15T09:38:11.686Z","avatar_url":"https://github.com/fluidtrends.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e \u003cimg src=\"https://raw.githubusercontent.com/fluidtrends/cassi/master/logo.png\" width=\"256px\"\u003e \n\n\u003ch1 align=\"center\"\u003e Cassi \u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e Cryptographic Asymmetric Secure Storage Infrastructure \u003c/h3\u003e\n\u003cp align=\"center\"\u003e Manage your secure data in password-protected, encrypted file-based vaults \u003c/p\u003e \u003cp align=\"center\"\u003e \u003cimg src=\"https://img.shields.io/github/package-json/v/idancali/cassi?color=green\"/\u003e\u003c/p\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/fluidtrends/cassi/actions?query=workflow%3Abuild\"\u003e\u003cimg src=\"https://github.com/fluidtrends/cassi/workflows/build/badge.svg\"/\u003e\u003c/a\u003e\n\u003ca href=\"https://codeclimate.com/github/fluidtrends/cassi/maintainability\"\u003e\u003cimg src=\"https://api.codeclimate.com/v1/badges/f472b929f316ff5f2d76/maintainability\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://codeclimate.com/github/fluidtrends/cassi/test_coverage\"\u003e\u003cimg src=\"https://api.codeclimate.com/v1/badges/f472b929f316ff5f2d76/test_coverage\" /\u003e\u003c/a\u003e\u003c/p\u003e\n\n\n## Getting Started\n\nThere's really nothing to getting Cassi up and running, other than selecting a root directory for your vault storage and setting a password for each vault. Have a look at how easy it is to create a Cassi Vault:\n\n```javascript\n// Import Cassi\nconst cassi = require('cassi')\n\n// Create a new vault instance\nconst vault = new cassi.Vault({ name: 'my-vault' })\n\n// Create the vault with password 'hello'\nvault.create('hello')\n      .then(({ vault, mnemonic }) =\u003e {\n        // Good stuff, enjoy your new vault\n        // Store the mnemonic somewhere safe\n      })\n      .catch((error) =\u003e {\n        // Something happened and the vault could not be created\n      })\n```\n\n## Documentation\n\nCassi is very well documented and all objects, options, fields and functions are well explained and they all include examples.\n\nRead the full documentation for detailed instructions on how to create, lock, unlock vaults and how to read and write sensitive data.\n\n[Read The Docs](/docs)\n\n## Contributing\n\nWe'd be glad to have you join us as an Cassi Contributor. Get started by reading our Contributor Guide.\n\n[Read The Contributor Guide](/contrib)\n\n## Dependencies\n\nCassi makes use of the following libraries:\n\n* [lowdb](https://github.com/typicode/lowdb) - for storage\n* [fs-extra](https://github.com/jprichardson/node-fs-extra) - for file management\n* [uuid](https://github.com/kelektiv/node-uuid) - for generating ids\n* [bip38](https://github.com/bitcoinjs/bip38) - for encrypting the machine secret\n* [bip39](https://github.com/weilu/bip39) - for generating mnemonics\n* [bitcoinjs-lib](https://github.com/bitcoinjs/bitcoinjs-lib) - for generating keys\n* [keytar](https://github.com/atom/node-keytar) - for working with the system keychain\n* [wif](https://github.com/bitcoinjs/wif) - for decoding machine secrets\n\n## License\n\nCassi is licensed under the MIT License.\n\n* [Read The License](LICENSE)\n\n## Sponsors\n\nCassi is sponsored by [Fluid Trends](http://fluidtrends.com) and is part of the Fluid Trends Open Source Lab.\n\nIf you'd like to co-sponsor this project, please email your co-sponsorship request to **team at fluidtrends.com**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluidtrends%2Fcassi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluidtrends%2Fcassi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluidtrends%2Fcassi/lists"}