Package Exports
- authorized-keys
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (authorized-keys) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
authorized-keys
Platform agnostic path resolution to a user's authorized_keys file Node.js.
OSX
keys();
#=> /Users/wilmoore/.ssh/authorized_keys
keys('git');
#=> /Users/git/.ssh/authorized_keysWindows
keys();
#=> C:\Users\wilmoore\.ssh\authorized_keys
keys('git');
#=> C:\Users\git\.ssh\authorized_keysLinux
keys();
#=> /home/wilmoore/.ssh/authorized_keys
keys('git');
#=> /home/git/.ssh/authorized_keysInstallation
npm install authorized-keys --save