1.3.0 • Published 9 years ago

blih-api v1.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 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

9 years ago

1.2.1

9 years ago

1.2.0

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago