New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

blih

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blih

Blih API for Node

latest
Source
npmnpm
Version
1.7.3
Version published
Maintainers
1
Created
Source

Blih

npm npm

Blih API for Node using the Promise API.

Installation

Using npm:

$ npm install blih

Quickstart

Get all your repositories :

const Blih = require('blih');

const api = new Blih({ email: 'email', password: 'password' });

api.listRepositories()
  .then(console.log)
  .catch(console.log);

Authentication

You have to be authenticated in order to use the Blih API (except for static methods), using your Epitech email and password.

const api = new Blih({ email: 'email', password: 'password' });

Note: Old logins using the format 'xxxxxx_y' are not used to authenticate anymore.

Alternatively, you can pass your token instead of your password if you have it. If both are given, only the token is taken into account.

const api = new Blih({ email: 'email', token: 'token' });

Documentation

Find the documentation here.

Keywords

blih

FAQs

Package last updated on 16 Feb 2018

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