Skip to content

fredericcambon/react-nes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-nes

React UI for https://github.com/fredericcambon/nes

Examples

Example 1 Example 2

Installing

docker-compose -f docker-compose.yml -f docker-compose.dev.yml build
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up

Go to localhost:8080

Quick Start

If you want to run the project locally you'll need to put your ROMs into the ./data folder and add a ./src/utils/constants.js file containing the info of these files to load.

No ROMs are provided to this project for obvious legal reasons.

export var ROMS = [ {
    value: 1,
    label: 'A game',
    slug: 'game-slug',
    cover: 'http://cover.png',
    filepath: 'rom-name.nes'
}]

TODO

This repo is still a WIP and its main purpose is to give me a UI to implement the NES Emulator