Ecosyste.ms: Awesome

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

https://github.com/mamal72/react-github

:octocat: A set of useful Github components for React
https://github.com/mamal72/react-github

github github-api react react-component

Last synced: about 1 month ago
JSON representation

:octocat: A set of useful Github components for React

Lists

README

        

[![Build Status](https://travis-ci.org/mamal72/react-github.svg?branch=master)](https://travis-ci.org/mamal72/react-github)
[![npm version](https://badge.fury.io/js/react-github.svg)](https://badge.fury.io/js/react-github)
# react-github
**react-github** is a set of react components for Github written by ES6 and ES7. It's a WIP and more components will be added.

# Installation

You can install this package via `npm`:

```bash
npm install react-github --save
```

# Components
## GithubProfile

Renders a simple Github user profile box with some useful info about the user.


profile

```js
import React, { Component } from 'react';
import { GithubProfile } from 'react-github';

class Test extends Component {
render() {
return (




);
}
}
```

### Properties
* **username**: Github username
* **className**: custom-additional CSS class for root element of rendered component

## GithubRepository

Renders a repository info box with some details of it.


repository

```js
import React, { Component } from 'react';
import { GithubRepository } from 'react-github';

class Test extends Component {
render() {
return (








);
}
}
```

### Properties
* **username**: Github username
* **repository**: Github repository name
* **showName** (default: *true*): render repository name
* **showUsername** (default: *true*): render username
* **showDescription** (default: *true*): render repository description
* **className**: custom-additional CSS class for root element of rendered component

# Ideas?
Just fill an issue and describe it. I'll check it ASAP. :)

# Contribution

You can fork the repository and send the pull requests.

Remember to lint your code before sending pull requests. Run the following command and fix the errors if you get any.
```bash
npm run lint
```