Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Versions
Deno Github API Wrapper
Simple wrapper of the GitHub (graphql) API for Deno π¦
Simple Example (proposed interface, prone to change)
let user = 'supercoolgithubuser';
const client = new Client('yourGithubToken');
let query = client.users.
getUserByUsername(user)
.selectFields('bio', 'createdAt')
.build();
let data = client.execute(query);
console.log(data);Features
- π Readability
- π Type safety
- π€ Easy to use
- π§© Extensible
Permissions
The only permission required to use this library is --allow-net if you run the execute method. The library will function as a query builder without it