Skip to content

v1.0.0

Compare
Choose a tag to compare
@Brooooooklyn Brooooooklyn released this 06 Mar 03:43
· 63 commits to main since this release
v1.0.0
3680746

Manage System Keyring via Node.js

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()