Socket
Socket
Sign inDemoInstall

gitlab-swagger-client

Package Overview
Dependencies
8
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gitlab-swagger-client

A fetch-based GitLab API client, auto-generated using Swagger codegen.


Version published
Weekly downloads
2
Maintainers
1
Install size
2.77 MB
Created
Weekly downloads
 

Readme

Source

GitLab Swagger Client

A GitLab API client using WHATWG Fetch. It's autogenerated from a Swagger/OpenAPI specification. For more information, see the home page.

Installation

npm install gitlab-swagger-client -S

If you are targetting a JavaScript environment which doesn't include ES6 promises, you should install es6-promise or similar.

Usage

import { MergeRequestsApi } from 'gitlab-swagger-client';

const gitlabAuth = { privateToken: 'my-private-token' };
// Or use an OAuth2 bearer token (excluding "Bearer ") 
// const gitlabAuth = { bearerToken: 'my-oauth2-token' };

const fetchImplementation = window.fetch // optional, uses isomorphic-fetch by default.
const basePath = 'https://gitlab.my-company.com/api/v3' // optional, defaults to 'https://gitlab.com/api/v3'
const mergeRequestsApi = new MergeRequestsApi(gitlabAuth, fetchImplementation, basePath);

mergeRequestsApi.listMergeRequests({ id: 'my-group%2fmy-project' }).then(mergeRequests => {
  mergeRequests.forEach(m => console.log(m.title));
});

Development

See https://gitlab.com/janslow/gitlab-swagger-client for information on changing this package.

Keywords

FAQs

Last updated on 14 Jul 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc