Socket
Socket
Sign inDemoInstall

username

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

username

Get the username of the current user


Version published
Weekly downloads
165K
decreased by-16.39%
Maintainers
1
Weekly downloads
 
Created
Source

username Build Status

Get the username of the current user

Install

$ npm install --save username

Usage

var username = require('username');

username(function (err, username) {
	console.log(username);
	//=> sindresorhus
});

// or

username.sync();
//=> sindresorhus

API

Tries to get the username from the LOGNAME USER LNAME USERNAME environment variables. The result is cached.

username(callback)

Falls back to id -un on OS X / Linux and whoami on Windows in the rare case none of the environment variables are set.

callback(err, username)

username.sync()

CLI

$ npm install --global username
$ username --help

  Usage
    username
  • fullname - Get the fullname of the current user

License

MIT © Sindre Sorhus

Keywords

FAQs

Package last updated on 14 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc