UNPKG

@stdlib/process

Version:

Process utilities.

110 lines (65 loc) 2.88 kB
<!-- @license Apache-2.0 Copyright (c) 2018 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> # getuid > Return the numeric user identity of the calling process. <section class="usage"> ## Usage ```javascript var getuid = require( '@stdlib/process/getuid' ); ``` #### getuid() Returns the numeric user identity of the calling process. ```javascript var id = getuid(); ``` </section> <!-- /.usage --> <section class="notes"> ## Notes - The function **only** returns an `integer` user identity on POSIX platforms. For all other platforms (e.g., Windows, browsers, and Android), the function returns `null`. - See [getuid(2)][getuid]. </section> <section class="examples"> ## Examples <!-- eslint no-undef: "error" --> ```javascript var getuid = require( '@stdlib/process/getuid' ); var uid = getuid(); if ( uid === 0 ) { console.log( 'Likely running as root.' ); } else { console.log( 'uid: %d', uid ); } ``` </section> <!-- /.examples --> <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> <section class="related"> * * * ## See Also - <span class="package-name">[`@stdlib/process/getegid`][@stdlib/process/getegid]</span><span class="delimiter">: </span><span class="description">return the effective numeric group identity of a calling process.</span> - <span class="package-name">[`@stdlib/process/geteuid`][@stdlib/process/geteuid]</span><span class="delimiter">: </span><span class="description">return the effective numeric user identity of a calling process.</span> - <span class="package-name">[`@stdlib/process/getgid`][@stdlib/process/getgid]</span><span class="delimiter">: </span><span class="description">return the numeric group identity of a calling process.</span> </section> <!-- /.related --> <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="links"> [getuid]: http://man7.org/linux/man-pages/man2/getuid.2.html <!-- <related-links> --> [@stdlib/process/getegid]: https://github.com/stdlib-js/process/tree/main/getegid [@stdlib/process/geteuid]: https://github.com/stdlib-js/process/tree/main/geteuid [@stdlib/process/getgid]: https://github.com/stdlib-js/process/tree/main/getgid <!-- </related-links> --> </section> <!-- /.links -->