Skip to content

karmugsst/github.dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub for Dart

This is a Client Library for GitHub in Dart. I wrote this out of necessity, and then when I got a great reaction from the Dart community, I decided to put a lot of effort into it. Please submit issues and pull requests, join my IRC channel, help out, or just give me encouragement, I will surely do everything you ask.

Links

Features

Current

  • Works on the Server and in the Browser
  • Really Fast
  • Plugable API
  • Supports Authentication
  • Builtin OAuth2 Flow

Work in Progress

  • Support all the GitHub APIs (Progress: 70%)
  • Full Documentation (Progress: 5%)

Planned

  • Hook Server Helper

Getting Started

First, add the following to your pubspec.yaml:

dependencies:
  github: ">=0.5.5 <1.0.0"

Then import the library and use it:

For the Server

import 'package:github/client.dart';

void main() {
  var github = new GitHub();
  github.repository(new RepositorySlug("DirectMyFile", "github.dart")).then((Repository repo) {
    /* Do Something */
  });
}

For the Browser

import 'package:github/browser.dart';

void main() {
  /* Required to setup GitHub for the Browser */
  initGitHub();
  
  var github = new GitHub();
  github.repository(new RepositorySlug("DirectMyFile", "github.dart")).then((Repository repo) {
    /* Do Something */
  });
}

Authentication

To use a GitHub token:

var github = new GitHub(auth: new Authentication.withToken("YourTokenHere"));

Contacting Us

You can find us on irc.esper.net at #directcode.

About

GitHub Client Library for Dart

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published