1.0.0-beta • Published 8 years ago

gitlab-apis v1.0.0-beta

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

gitlab-apis


The most comprehensive gitlab api, almost covers all gitlab apis. Also, we provide a isomorphic api which can be used both in browser and Node.js.

Install

tnpm install --save gitlab-apis

Usage

const GitlabApis = require('gitlab-apis');

const client = GitlabApis({
  // the gitlab url
  base_url: 'http://gitlab.alibaba-inc.com',
  private_token: '',
  timeout: 3000,
});

// return a promise object
const ret = apis.projects.list({search: 'xx'});