An open API service indexing awesome lists of open source software.

https://github.com/emersion/node-passwordmaker

A Node.js library for Password Maker
https://github.com/emersion/node-passwordmaker

Last synced: 5 months ago
JSON representation

A Node.js library for Password Maker

Awesome Lists containing this project

README

          

# node-passwordmaker

[![Build Status](https://travis-ci.org/emersion/node-passwordmaker.svg?branch=master)](https://travis-ci.org/emersion/node-passwordmaker)

A Node.js library for [Password Maker](http://passwordmaker.org/).

## Usage

```js
var makepwd = require('passwordmaker');

console.log(makepwd({
hashAlgorithm: 'sha256',
masterPassword: 'test',
data: 'example.org',
length: 8,
charset: ''
}));
```