Local username and password authentication strategy for Passport.
passport local auth authn authentication username passwordFirst tries to get the username from the SUDO_USER LOGNAME USER LNAME USERNAME environment variables. Then falls back to $ id -un on macOS / Linux and $ whoami on Windows, in the rare case none of the environment variables are set. The result is cached.Returns a Promise for the username.
username user login name logname lname whoami shell env var environment variableWorks on macOS and Linux. See user-info if you need cross-platform support.Accepts a username or uid number. Defaults to the current user (process.getuid()).
passwd osx uid gid pw getpwuid posix unix shell home dir username user etc password passwordsIf you're creating a reusable module you should probably use passwd-user instead, as it shells out rather than using a native binding.getpwuid() is a POSIX function and won't work on Windows.
binding native addon uid gid pw getpwuid posix unix shell home dir usernameThis library lets you validate usernames against a blacklist. The blacklist data is based on the data from The-Big-Username-Blacklist and contains privilege, programming terms, section names, financial terms and actions. You can try the blacklist using the tool Username checker.
blacklist blacklist-data usernamePassport strategy for authenticating using client certificates.Applications must supply a verify callback which accepts the client certificate. It then calls the done callback supplying a user. User should be set to false if the credentials are not valid. If an exception occured, err should be set.
passport auth authn authentication username password client-cert client-certificate certificates sslPlatform agnostic user home directory path resolution (i.e. man 5 passwd) for Node.js. The user's home directory. This is the full path name where the user will be placed on login.
userhome user home homedir home_dir passwd(5) username userpathThis NodeBB plugin allows posters to reference (or mention) other users or groups on a NodeBB by simply precluding the @ symbol before a username. A link is automatically added to the post.
nodebb plugin username mentionsRead user name, email and URL from .npmrc or .gitconfig. Npm has priority over Git. git binary is required and used to read Git configuration. Don’t use this module if performance is important.
npm npmrc git gitconfig name username user url config configuration
We have large collection of open source products. Follow the tags from
Tag Cloud >>
Open source products are scattered around the web. Please provide information
about the open source projects you own / you use.
Add Projects.