Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/matteopolak/minecraft-auth
- Owner: matteopolak
- License: mit
- Created: 2023-01-16T01:02:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T03:25:15.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T11:46:13.697Z (21 days ago)
- Topics: authentication, microsoft, minecraft, proxy
- Language: TypeScript
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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...
```