1.3.0 • Published 7 years ago

blih-api v1.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

npm version

blih-api

A simple interface in JavaScript to use the Epitech system.

1. Install

npm install --save blih-api

2. Starter

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

gulp doc

Auteur

Walter Bonetti (bonett_w Epitech Lyon 2020)

MIT

1.3.0

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago