parse-passwd

WebJar for parse-passwd

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

parse-passwd
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

parse-passwd
WebJar for parse-passwd
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/doowb/parse-passwd

Download parse-passwd

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/parse-passwd/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>parse-passwd</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/parse-passwd/
implementation 'org.webjars.npm:parse-passwd:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/parse-passwd/
implementation ("org.webjars.npm:parse-passwd:1.0.0")
'org.webjars.npm:parse-passwd:jar:1.0.0'
<dependency org="org.webjars.npm" name="parse-passwd" rev="1.0.0">
  <artifact name="parse-passwd" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='parse-passwd', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "parse-passwd" % "1.0.0"
[org.webjars.npm/parse-passwd "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

parse-passwd NPM version NPM downloads Linux Build Status Windows Build Status

Parse a passwd file into a list of users.

Install

Install with npm:

$ npm install --save parse-passwd

Usage

var parse = require('parse-passwd');

API

Example

// assuming '/etc/passwd' contains:
// doowb:*:123:123:Brian Woodward:/Users/doowb:/bin/bash
console.log(parse(fs.readFileSync('/etc/passwd', 'utf8')));

//=> [
//=>   {
//=>     username: 'doowb',
//=>     password: '*',
//=>     uid: '123',
//=>     gid: '123',
//=>     gecos: 'Brian Woodward',
//=>     homedir: '/Users/doowb',
//=>     shell: '/bin/bash'
//=>   }
//=> ]

Params

  • content {String}: Content of a passwd file to parse.
  • returns {Array}: Array of user objects parsed from the content.

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Please read the contributing guide for avice on opening issues, pull requests, and coding standards.

Building docs

(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)

To generate the readme and API documentation with verb:

$ npm install -g verb verb-generate-readme && verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Brian Woodward

License

Copyright © 2016, Brian Woodward. Released under the MIT license.


This file was generated by verb-generate-readme, v0.2.0, on October 19, 2016.

Versions

Version
1.0.0