keytar-sync
v7.9.1
Published
Bindings to native Mac/Linux/Windows password APIs
Downloads
18
Maintainers
Readme
keytar-sync - Node module to manage system keychain
A native Node module to get, add, replace, and delete passwords in system's keychain. On macOS the passwords are managed by the Keychain, on Linux they are managed by the Secret Service API/libsecret, and on Windows they are managed by Credential Vault.
This project is a merge between [email protected] and [email protected] as a solution for having an updated sync version of node-keytar.
Installing
npm install keytar-sync
On Linux
Currently this library uses libsecret
so you may need to install it before running npm install
.
Depending on your distribution, you will need to run the following command:
- Debian/Ubuntu:
sudo apt-get install libsecret-1-dev
- Red Hat-based:
sudo yum install libsecret-devel
- Arch Linux:
sudo pacman -S libsecret
Building
- Clone the repository
- Run
npm install
- Run
npm test
to run the tests
Supported versions
Each release of keytar
includes prebuilt binaries for the versions of Node and Electron that are actively supported by these projects. Please refer to the release documentation for Node and Electron to see what is supported currently.
Bindings from other languages
Docs
const keytar = require('keytar-sync')
Differences in Behavior
The asynchronous functions in Keytar return Promises, which resolve with data upon successful completion and reject with an error if one occurs.
The synchronous functions in Keytar return plain values, and throw errors when they encounter issues.
getPassword(service, account)
Get the stored password for the service
and account
.
service
- The string service name.
account
- The string account name.
Yields the string password or null
if an entry for the given service and account was not found.
getPasswordSync(service, account)
Get the stored password for the service
and account
.
service
- The string service name.
account
- The string account name.
Yields the string password or null
if an entry for the given service and account was not found.
setPassword(service, account, password)
Save the password
for the service
and account
to the keychain. Adds a new entry if necessary, or updates an existing entry if one exists.
service
- The string service name.
account
- The string account name.
password
- The string password.
Yields nothing.
setPasswordSync(service, account, password)
Save the password
for the service
and account
to the keychain. Adds a new entry if necessary, or updates an existing entry if one exists.
service
- The string service name.
account
- The string account name.
password
- The string password.
Returns nothing.
deletePassword(service, account)
Delete the stored password for the service
and account
.
service
- The string service name.
account
- The string account name.
Yields true
if a password was deleted, or false
if an entry with the given service and account was not found.
deletePasswordSync(service, account)
Delete the stored password for the service
and account
.
service
- The string service name.
account
- The string account name.
Returns true
if a password was deleted, or false
if an entry with the given service and account was not found.
findCredentials(service)
Find all accounts and password for the service
in the keychain.
service
- The string service name.
Yields an array of { account: 'foo', password: 'bar' }
.
findCredentialsSync(service)
Find all accounts and password for the service
in the keychain.
service
- The string service name.
Returns an array of { account: 'foo', password: 'bar' }
.
findPassword(service)
Find a password for the service
in the keychain. This is ideal for scenarios where an account
is not required.
service
- The string service name.
Yields the string password, or null
if an entry for the given service was not found.
findPasswordSync(service)
Find a password for the service
in the keychain. This is ideal for scenarios where an account
is not required.
service
- The string service name.
Returns the string password, or null
if an entry for the given service was not found.