Giter VIP home page Giter VIP logo

node-keytar's Introduction

Keytar - Node module to manage system keychain

Travis Build Status Windows Build Status Dependency Status

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.

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

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.

Returns a Promise yielding 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.

Returns a Promise yielding nothing, and resolving only after password has been set.


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.

Returns a Promise, resolving 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.

Returns a Promise, resolving 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.

Returns a Promise, which resolves to 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.

License [ MIT ]

Copyright (c) 2013 GitHub Inc.

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.

node-keytar's People

Contributors

50wliu avatar anaisbetts avatar anglinb avatar binarymuse avatar cryppadotta avatar damieng avatar daviwil avatar dependabot-preview[bot] avatar dependabot[bot] avatar develar avatar kevinsawicki avatar kuychaco avatar lee-dohm avatar marshallofsound avatar metaspartan avatar mnquintana avatar no2chem avatar nornagon avatar peterdavehello avatar pouja avatar rmehner avatar shiftkey avatar siebertm avatar smashwilson avatar stevedesmond-ca avatar surferandi avatar torn4dom4n avatar vbfox avatar wbrickner avatar zcbenz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.