UNPKG
etc-passwd
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.1
0.0.0
Interface to read a standard Unix passwd and group file-format
bahamas10/node-etc-passwd
etc-passwd
/
examples
/
passwd-callback.js
9 lines
(6 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node
var
passwd =
require
(
'../'
); passwd.
getUsers
(
function
(
err, users
) {
if
(err)
throw
err;
console
.
log
(
JSON
.
stringify
(users)); });