# cfxnes (lib) JavaScript library for NES emulation in web browser. - [API](API.md) - [Examples](examples) ## Supported Browsers - Chrome (last 2 versions) - Firefox (last 2 versions) - Opera (last 2 versions) - IE 11, Edge >= 12 - Safari >= 9 IE 11 and Safari 9 need [polyfill for some ES6 features](polyfills.js). ## Example ``` html ``` ## Importing ``` javascript // CommonJS const cfxnes = require('cfxnes'); // AMD define(['cfxnes'], function(cfxnes) {/* ... */}); // Global variable window.cfxnes; ``` ## Building Run `npm run build` to build the library into the `dist` directory. ## Development | `npm run