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

https://github.com/felixfong227/node-keybase

A very simple Keybase.io SDK for Node
https://github.com/felixfong227/node-keybase

keybase keybase-api keybase-sdk

Last synced: 9 months ago
JSON representation

A very simple Keybase.io SDK for Node

Awesome Lists containing this project

README

          

# Keybase.io NodeJS SDK

## πŸ‘·πŸ½β€β™€οΈThis project is still under active development πŸ‘·πŸ½

---

```javascript
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](https://keybase.io/docs/api/1.0/call/signup) and wrap those calls into one single easily adaptable library