https://github.com/levlaz/releases
Uses GitHub API to show feed of releases for a given project
https://github.com/levlaz/releases
Last synced: 6 months ago
JSON representation
Uses GitHub API to show feed of releases for a given project
- Host: GitHub
- URL: https://github.com/levlaz/releases
- Owner: levlaz
- License: mit
- Created: 2015-11-25T01:10:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T00:31:07.000Z (over 10 years ago)
- Last Synced: 2025-10-13T04:36:13.511Z (10 months ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# releases
Uses GitHub API to show feed of releases and open bugs for a given project. You can see a live version of releases in action [here](https://braindump.pw).
## Preview

## Installation
Releases is now packaged as a npm module, you can install it with `npm install releases`.
## Usage
Add the following HTML to the page where you want the releases to be displayed.
```
Known Issues
Latest Releases
```
Load the following scripts on the same page as where you put the code above. (*note* if you are using Bootstrap you probably are already loading jQuery)
```
```
Add the Styles from style.css to your existing stylesheet.
```
/* Style for Releases Plugin */
#releases {
list-style-type: none;
margin: 0;
padding: 0;
}
```
Update the `window.repo` variable on [Line 5](https://github.com/levlaz/releases/blob/master/js/releases.js#L5) of `releases.js` to be whatever repo you want to display releases for.