Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/connoratherton/progress

Progress.js is an online tool that allows students to visualise and forecast academic grades
https://github.com/connoratherton/progress

Last synced: about 1 month ago
JSON representation

Progress.js is an online tool that allows students to visualise and forecast academic grades

Awesome Lists containing this project

README

        

# Progress.js

Progress is an online tool that allows students to visualise and forecast academic grades

## Usage

Link progress.js file into your project

```HTML

```

Create container for progress to load graphs into.

**IMPORTANT** The container needs to have an ```id``` so progress can find it. It also needs to have a ```data-user-id``` attribute which is the users unique identifier to retrieve data from RESTful API

```HTML

```

Initalise progress by calling `progress.init()` passing in the container ```id``` as the first argument and link to the API where the student data is served as the second argument

```JavaScript
progress.init("data", "path/to/RESTful/API")
```

Watch the magic happen.

## Installing the demo

Navigate into the ```demo``` directory.

Install node modules

npm install

Install bower dependencies

bower install

Run the server

grunt server

The demo should automatically open in your browser - now just hack away and contribute!

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request