@napi-rs/keyring
v1.1.6
Published
https://github.com/hwchen/keyring-rs Node.js binding via https://napi.rs
Downloads
12,377
Readme
@napi-rs/keyring
https://github.com/hwchen/keyring-rs Node.js binding via https://napi.rs
Usage
import { Entry } from '@napi-rs/keyring'
const entry = new Entry('my_service', 'my_name')
entry.setPassword('topS3cr3tP4$$w0rd')
const password = entry.getPassword()
console.log('My password is ', password)
entry.deletePassword()