Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gitlab2mite

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

gitlab2mite

Sync your mite projects/services with your github projects/issues

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Gitlab 2 mite

Sync your Issues from a gitlab project to your mite account.

Installation

$ npm install gitlab2mite

create a config.json under ~/.gitlab2mite/config.json

{
  "mite": {
    "account": "account",
    "apiKey": "apiKey"
  },
  "gitlab": {
    "api": "https://gitlab.com/api/v3",
    "privateToken": "your private token"
  },
  "acceptCerts": false
}

Usage

on the CLI

$ gitlab2mite sync[project-path-with-namespace]

or programatically

var g2m = require('gitlab2mite');

g2m.getProjectByPath('namespace/project', function(err, project) {
  if (!err) {
    g2m.syncServicesWithProjectIssues(project.id, function(err) {
      if (!err) {
        console.log('Syncing done!');
      }
    });
  }
});

FAQs

Package last updated on 27 Jan 2015

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc