https://github.com/ecrmnn/passlawl.js
Generate weird random passwords
https://github.com/ecrmnn/passlawl.js
Last synced: 2 months ago
JSON representation
Generate weird random passwords
- Host: GitHub
- URL: https://github.com/ecrmnn/passlawl.js
- Owner: ecrmnn
- Created: 2016-03-02T22:02:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-12T00:49:22.000Z (about 9 years ago)
- Last Synced: 2024-10-29T22:26:20.879Z (7 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/passlawl.js
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# passlawl.js
> Generate weird random passwords[](https://travis-ci.org/ecrmnn/passlawl.js)
[](http://badge.fury.io/js/passlawl.js)
[](http://badge.fury.io/js/passlawl.js)
[](http://badge.fury.io/js/passlawl.js)### Installation
```bash
npm install passlawl.js --save
```### Usage
Generate random 4 word password in english (default)
```javascript
const passlawl = require('passlawl.js');console.log(passlawl.get());
//=> AbsorbingBreathNeverSang
```Genereate random 4 word password in norwegian (using locale)
```javascript
const passlawl = require('passlawl.js');console.log(passlawl.locale('no').get());
//=> KongeSavnetSelvopptattEtterspørsel
```### Related
- [passlawl](https://github.com/ecrmnn/passlawl) - CLI for this module### License
MIT © [Daniel Eckermann](http://danieleckermann.com)