https://github.com/projectm-visualizer/projectm-visualizer.org
Website | Nuxt 3
https://github.com/projectm-visualizer/projectm-visualizer.org
Last synced: 4 months ago
JSON representation
Website | Nuxt 3
- Host: GitHub
- URL: https://github.com/projectm-visualizer/projectm-visualizer.org
- Owner: projectM-visualizer
- Created: 2023-09-25T03:40:05.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2026-02-12T23:40:33.000Z (4 months ago)
- Last Synced: 2026-02-13T08:40:28.652Z (4 months ago)
- Language: Vue
- Homepage:
- Size: 13.9 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProjectM Visualizer — Official Website
[🔗 Visit the Website](https://projectm-visualizer.org)
Welcome to the official website of the **ProjectM Visualizer** organization. This site serves as a central hub for our visualizer-related projects, resources, and community updates.
---
## 🛠 Development Setup
Follow these steps to get the site running locally:
### 1. Clone the Repository
```bash
git clone https://github.com/projectM-visualizer/projectm-visualizer.org
cd projectm-visualizer.org
```
### 2. Install bun.sh
#### Linux / macOS
```bash
curl -fsSL https://bun.sh/install | bash
```
#### Windows
```powershell
powershell -c "irm bun.sh/install.ps1 | iex"
```
### 3. Install dependencies:
```bash
bun install
```
### 4. Start the development server:
```bash
bun dev
```
### 5. Open your browser and navigate to [http://localhost:3000](http://localhost:3000) to view the website.
## ⚠️ Known Issues
- `bun install` may fail on Windows due to missing `node-gyp`. This is caused by `better-sqlite3`.
- To fix this, you can run `npm install` followed by `bun install` to install the dependencies.
- This will then allow you to utilize the environment without issues.
- Linux has no issues with this.