Skip to content

Keeper-Security/keeper-sdk-javascript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keeper Javascript SDK Header

Keeper Javascript SDK

This Javascript SDK allows you to interact with the Keeper backend API service - login, sync Vault, manage data etc.

This SDK can be used from Node or from the browser

NPM

Usage:

npm install keeperapi
    try {
        let auth = new Auth({
            host: KeeperEnvironment.DEV
        });
        await auth.login(username, password);
        console.log("login successful");
        let vault = new Vault(auth);
        await vault.syncDown();
        vault.records.forEach(x => console.log(JSON.stringify(x)));
    } catch (e) {
        console.log(e);
    }

For local development,

npm run build

from "keeperapi" folder, then

npm link ../../keeperapi

from your client folder

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 10