Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 544 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 544 Bytes

Keybase.io NodeJS SDK

👷🏽‍♀️This project is still under active development 👷🏽


const KB = require('node-keybase');
(async () => {
    const me = await KB().User().GetUser().ByName('felixfong227');
    console.log(`Hello my name is ${me.profile.full_name}`);
    // #=> Hello my name is Felix Fong
})().catch(err => console.error(err));

My plan is to based on The Official Keybase API Docs and wrap those calls into one single easily adaptable library