Passager Password Manager is an open-source and easy-to-use password manager.
passager
in cloud mode.Passager can be used in local mode, which means that all data is stored in the browser’s local storage. This is the recommended mode if you want to be sure that your data is not stored in any server.
Just download the mobile app or directly access from your browser:
It’s possible to build the docker image with the following command:
npm run build:docker
Then start the container with:
npm run start:docker
A production-ready build will be available on the port 8000
served by a basic apache server.
Passager has its own REST service to handle authentication and data storage. It works great for organizations that need to keep synchronized their passwords between different devices. Additionally, sharing capabilities are available when connecting Passager to a remote backend.
A new backend instance can be easily started by building and running its corresponding docker image.
Please refer to the Passager Backend directory for more information.
Build the docker image with the following command:
npm run build:docker:dev
Then start the container with:
npm run start:docker:dev
A development build will be available on the port 3000
. Changes on the code will be reflected on the container.
create-react-app
is the passager
’s scaffolding engine.
In the project directory, you can run:
npm run prepare
npm start
npm test
npm run build
To achieve simplicity, security and usability for teams, the following technical decisions have been adopted:
You could be wondering why the world needs another password manager.
The answer is that the world doesn’t really need more password managers, but I used to need an open source, easy to install and maintain one, and I have never found it.
This is the reason to create passager
. To bring to the world a password manager that is:
These are the three topics around the value-proposition of passager
, and these points should be the foundation to define its vision and goals.
This is a personal project and I do not consider myself responsible for the usage given to this software. Please understand that I can’t be responsible for any direct or indirect damage this software may cause due to any kind of problem.
I’ve developed this software with all my 💛, but as you know there are evil people outside in the network. Take care, install always all available updates, and use passager
at your own risk.
If you find any security issue or possible improvement, feel free to submit a PR and I would try to do my best to handle it.
@mdi/js
and @mdi/react
, to require and render material design icons.create-react-app
, and all dependencies included in the default template are used to build the project foundation and scaffolding.react-i18next
and i18next
, to translate the app to different languages.styled-components
, is used to style components.@capacitor/android
, @capacitor/cli
, @capacitor/core
, @capacitor/ios
, @capacitor/status-bar
and capacitor-native-biometric
are used to compile the app for mobile devices.husky
, to run tests before commiting changes to the repository.WebCrypto API is used to encrypt and decrypt data from passager. This theorically means, as long as your browser is updated, your crypto algorithms will be safe. These are the techniques followed to protect user passwords: