nes-vue icon indicating copy to clipboard operation
nes-vue copied to clipboard

A NES(FC) emulator component for Vue 3.

nes-vue

A NES (FC)🎮 emulator component for Vue 3.

GitHub package.json version

:cn:中文

🚀Playground

Vue SFC Playgournd

NES Vue Playground

Features

  • [x] Support for multiplayer.
  • [x] Support for gamepad.
  • [x] Support for turbo button.
  • [x] Support for saving and loading.
  • [x] Support for playing TAS recordings. (*.fm2)
  • [x] Support for cheat codes.

Usage

install

npm install nes-vue --save

And then

<script setup>
  import { NesVue } from 'nes-vue';
</script>
<template>
  <nes-vue
    url="https://taiyuuki.github.io/nes-vue/Super Mario Bros (JU).nes"
  />
</template>

Refer to documentations for more details.