Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlcolglazier/rate
A rating system library for JavaScript.
https://github.com/carlcolglazier/rate
Last synced: about 1 month ago
JSON representation
A rating system library for JavaScript.
- Host: GitHub
- URL: https://github.com/carlcolglazier/rate
- Owner: CarlColglazier
- Created: 2015-01-26T00:52:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-31T18:30:48.000Z (almost 10 years ago)
- Last Synced: 2024-11-13T21:12:57.707Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 215 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#rate
A rating system library for JavaScript.
##Getting Started
###Installation
rate can be installed using npm
`npm install rate`
###Initialization
`var rate = requier("rate");`
A new version of each rating system can then be called using
```
var elo = new rate.elo();
var groupElo = new rate.groupElo();
```The new operator should be used to allow multiple instances of the same rating system within the same function.
##Usage
See [the GitHub wiki](https://github.com/CarlColglazier/rate/wiki) for further documentation.