RetroAssembly is a personal retro game collection cabinet in your browser.
- Relive memories from numerous retro gaming consoles in the browser. NES, SNES, Genesis, GameBoy, Arcade... See Supported Platforms below.
- See your game collection displayed with auto-detected beautiful box arts and covers.
- Save and synchronize your game at any point and resume later.
- Made a mistake? Some emulators allow you to rewind gameplay.
- Browse through platforms and your game library with an intuitive interface with spatial navigation , which means you can just use a keyboard or a gamepad to navigate between games.
- Enhance your gaming experience with beautiful visual effects with retro-style shaders.
- Play on the go, even without a physical gamepad, using our on-screen virtual controller.
Share your thoughts or ideas to our community and they may appear here later :)
You have two options to get started with RetroAssembly:
Tip
- This option is recommended for most users.
- Perfect if you want to get started quickly without any setup.
- Visit the RetroAssembly website (retroassembly.com) in your web browser.
- (Optional) If you're new here, explore the library and try out the available demo games to see how it works.
- Login and create your personal game library by uploading your own ROM files.
- Once your ROMs are uploaded, select any game from your library to launch it directly in your browser and start playing.
- Don't forget to use the in-game menu to save your progress, which will be synchronized for you.
Tip
- This option is for advanced users who want full control.
- Perfect if you prefer to host your own instance, have privacy concerns, or want to customize the deployment.
- Make sure you have Docker installed on your system.
- Pull and run the RetroAssembly Docker image:
Replace
docker run -d --name retroassembly -p 8000:8000 -v /path/to/your/data:/app/data arianrhodsandlot/retroassembly
/path/to/your/data
with the actual path where you want to store your game data, ROMs, and save states. For example:You can also change the portdocker run -d --name retroassembly -p 8000:8000 -v /srv/retroassembly:/app/data arianrhodsandlot/retroassembly
8000
to any other value you want.
- Make sure you have Docker and Docker Compose installed on your system.
- Create a
docker-compose.yml
file:Replaceversion: '3.8' services: retroassembly: image: arianrhodsandlot/retroassembly container_name: retroassembly ports: [8000:8000] volumes: [/path/to/your/data:/app/data] restart: unless-stopped
/path/to/your/data
with the actual path where you want to store your game data, ROMs, and save states. - Run the service:
docker-compose up -d
- Open your browser and navigate to
http://yourhost:8000
(if the port8000
is used in previous steps) to access your self-hosted RetroAssembly instance. - Create an account after clicking the "Library" button.
- Upload your ROM files and start gaming!
RetroAssembly aims to support a wide range of vintage gaming systems. Emulation is powered by Nostalgist.js.
Click here to view the comprehensive list.
Console | Available Emulators |
---|---|
Arcade | mame2003_plus |
Atari 2600 | stella2014 |
Game Boy | mgba , gearboy , gambatte , tgbdual |
Game Boy Advance | mgba , vba_next |
Game Boy Color | mgba , gearboy , gambatte , tgbdual |
Game Gear | genesis_plus_gx , gearsystem |
Genesis / Megadrive | genesis_plus_gx |
Master System | genesis_plus_gx , picodrive , gearsystem |
Neo Geo Pocket | mednafen_ngp |
Neo Geo Pocket Color | mednafen_ngp |
NES / Family Computer | fceumm , nestopia , quicknes |
Sega SG-1000 | gearsystem |
Super Famicom / Super NES | snes9x , snes9x2002 , snes9x2005 , snes9x2010 |
Virtual Boy | mednafen_vb |
WonderSwan | mednafen_wswan |
WonderSwan Color | mednafen_wswan |
Make sure you have these softwares installed or activated.
Dependences | Version |
---|---|
Node.js | >=24 |
pnpm | >=10 |
Simply run following commands in a terminal then a development server will be launched.
- Install Node.js packages
pnpm i
- Setup development environment
node --run=setup
- Run development server
node --run=dev
We hope you have a fantastic time revisiting your favorite retro games... Even with applications other than RetroAssembly.