https://github.com/wyxemon/feather
Minecraft Launcher create with Electron with a modern UI.
https://github.com/wyxemon/feather
css electron html js minecraft minecraft-launcher
Last synced: 2 months ago
JSON representation
Minecraft Launcher create with Electron with a modern UI.
- Host: GitHub
- URL: https://github.com/wyxemon/feather
- Owner: Wyxemon
- Created: 2025-02-25T18:18:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-22T11:33:44.000Z (over 1 year ago)
- Last Synced: 2025-03-29T22:16:28.556Z (about 1 year ago)
- Topics: css, electron, html, js, minecraft, minecraft-launcher
- Language: CSS
- Homepage:
- Size: 177 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feather
Feather is an open-source Minecraft Launcher built with JavaScript (Electron).

## ⬇️ Download
Choose your operating system to download Feather:
- [Download for macOS](https://github.com/Wyxemon/Feather/releases/tag/1.0v)
- [Download for Windows](https://github.com/Wyxemon/Feather/releases/tag/1.0v)
- [Download for Linux](https://github.com/Wyxemon/Feather/releases/tag/1.0v)
---
## 🚀 How to Run
Follow these steps to set up and run Feather on your local machine:
1. Clone the repository:
```bash
git clone https://github.com/your-repo/Feather.git
```
2. Navigate to the project folder:
```bash
cd Feather
```
3. Install dependencies:
```bash
npm install
```
4. Run the project:
```bash
npm run dev
```
---
## 🛠️ How to Build
Feather uses [`electron-packager`](https://www.npmjs.com/package/electron-packager) to package the application. Install it globally if you haven't:
```bash
npm i -g electron-packager
```
Then, use the following commands to build for your desired platform:
### Windows
```bash
npx electron-packager . Feather --platform=win32 --arch=x64 --out=build --icon=icon.png
```
### macOS
```bash
npx electron-packager . Feather --platform=darwin --arch=x64 --out=build --icon=icon.png
```
### Linux
```bash
npx electron-packager . Feather --platform=linux --arch=x64 --out=build --icon=icon.png
```
---
## 📜 License
Feather is open source and you can do whatever you want.