Skip to content

A browser UI for JSNES, a JavaScript NES emulator

License

Notifications You must be signed in to change notification settings

wSoltysiak/jsnes-web

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSNES Web UI

A React-based web UI for JSNES.

Running in development

$ yarn install
$ yarn start

Building for production

$ yarn build

The built app will be in build/.

Running tests

$ yarn test

Formatting code

All code must conform to Prettier formatting. The test suite won't pass unless it does.

To automatically format all your code, run:

$ yarn run format

Adding roms

Add ROMs for yourself using localStorage

Navigate to the server public root (e.g. http://localhost:3000), click "+ Add ROM files" and follow the instructions. The ROMs will be saved into your browser cache and other users will not be able to access them.

Add ROMs for all users

Open src/config.js and add a new key under the defined config.ROMS. For example:

myrom: {
  name: "My Rom",
  description: <span>This is my own homebrew NES rom</span>,
  url: "http://localhost:3000/roms/myrom/myrom.nes"
}

If you add your rom file now under public/roms/myrom/myrom.nes, the game should start playing as you navigate to http://localhost:3000/run/myrom

About

A browser UI for JSNES, a JavaScript NES emulator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 94.6%
  • CSS 3.1%
  • HTML 2.3%