🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@huang.xinghui/node-gitlab

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@huang.xinghui/node-gitlab

access gitlab api by using node

1.0.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

#node-gitlab access gitlab api by using node

Install

Node.js 4 or higher

$ npm install @huang.xinghui/node-gitlab --save

Usage

// url is your gitlab api path such as http://example.com/api/v3/
// token is your user private token
var gitlab = require('@huang.xinghui/node-gitlab').connect(url, token);

gitlab.issues.all(projectId).then(function(issues) {
  // do something
});

API

  • issues
    • all(projectId) query project all issues
    • query(projectId, milestoneId) query project one milestone all issues
  • milestones
    • all(projectId) query project all milestones
    • query(projectId, title) query project milestone by title
  • projects
    • all() query all projects
  • tags
    • all(projectId) query project all tags

Keywords

gitlab

FAQs

Package last updated on 08 Jun 2016

Did you know?

Socket

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