https://github.com/initerworker/blih-api
A simple interface in JavaScript to use the Epitech system.
https://github.com/initerworker/blih-api
Last synced: about 1 year ago
JSON representation
A simple interface in JavaScript to use the Epitech system.
- Host: GitHub
- URL: https://github.com/initerworker/blih-api
- Owner: IniterWorker
- License: mit
- Created: 2016-05-27T21:24:45.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-18T14:03:57.000Z (over 9 years ago)
- Last Synced: 2025-03-19T18:43:48.453Z (over 1 year ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://badge.fury.io/js/blih-api)
# blih-api
A simple interface in JavaScript to use the Epitech system.
#### 1. Install
```sh
npm install --save blih-api
```
#### 2. Starter
```js
var blihApi = require('blih-api');
var Blih = new blihApi("email", "passwordUnix");
/**
* Blih function - get all repositories name
* @param {function} callback function(error, data)
*/
Blih.getRepositories(function (error, data) {
if (error)
console.error(error);
for (key in data.repositories)
{
console.log(key);
}
});
```
#### 3. Generate Documentation
```sh
gulp doc
```
#### Auteur
Walter Bonetti (bonett_w Epitech Lyon 2020)
_MIT_