Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matteopolak/minecraft-auth

Minecraft: Java Edition authentication with proxy support.
https://github.com/matteopolak/minecraft-auth

authentication microsoft minecraft proxy

Last synced: 1 day ago
JSON representation

Minecraft: Java Edition authentication with proxy support.

Awesome Lists containing this project

README

        

# Minecraft Auth

```powershell
# Install with yarn
yarn add @matteopolak/minecraft-auth

# Install with npm
npm install @matteopolak/minecraft-auth
```

## Usage

```typescript
import { MicrosoftAuth } from '@matteopolak/minecraft-auth';

const auth = new MicrosoftAuth('username', 'password');
const java = await auth.getJavaToken();

console.log(java.token); // eyJhbG...
```