Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 
Guillaume Vincent 908d6568ba Add husky to prevent commit without green tests před 7 roky
dist Migrate from Browserify to Webpack před 7 roky
example update documentation with v2 example před 8 roky
src move index into src folder před 8 roky
tests update documentation with v2 example před 8 roky
.gitignore upgrade to node 6 LTS před 8 roky
.travis.yml upgrade to node 6 LTS před 8 roky
LICENSE change license from MIT to GNU GPLv3 před 8 roky
package.json Add husky to prevent commit without green tests před 7 roky
readme.md fix 404 link před 7 roky
webpack.config.js Migrate from Browserify to Webpack před 7 roky

readme.md

Build Status

core library for LessPass password manager in javascript used to generate unique password.

Requirements

  • node LTS v6

Install

npm install lesspass

Usage

const site = 'lesspass.com';
const login = 'contact@lesspass.com';
const masterPassword = 'password';
const passwordProfile = {
    lowercase: true,
    uppercase: true,
    numbers: true,
    symbols: true,
    length: 16,
    counter: 1,
    version: 2
};
LessPass.generatePassword(site, login, masterPassword, passwordProfile)
    .then(function (generatedPassword) {
        assert.equal(generatedPassword, '\\g-A1-.OHEwrXjT#');
        console.log('generated password ok');
    });

see tests/api.tests.js for more examples

Tests

npm test

License

This project is licensed under the terms of the GNU GPLv3.

Issues

report issues on LessPass project