{"id":13744498,"url":"https://github.com/nesbox/emulator","last_synced_at":"2026-01-28T04:34:46.557Z","repository":{"id":20348773,"uuid":"23623661","full_name":"nesbox/emulator","owner":"nesbox","description":"Emulator of NES, Super Nintendo, Sega Mega Drive, GameBoy video consoles","archived":false,"fork":false,"pushed_at":"2015-08-02T12:15:51.000Z","size":12408,"stargazers_count":614,"open_issues_count":90,"forks_count":253,"subscribers_count":80,"default_branch":"master","last_synced_at":"2025-02-26T02:31:26.341Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://nesbox.com/emulator/","language":"ActionScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"mehdimo/IoTCodeRecipes","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nesbox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-03T14:30:28.000Z","updated_at":"2025-02-21T11:39:22.000Z","dependencies_parsed_at":"2022-08-31T01:50:25.487Z","dependency_job_id":null,"html_url":"https://github.com/nesbox/emulator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nesbox/emulator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesbox%2Femulator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesbox%2Femulator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesbox%2Femulator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesbox%2Femulator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nesbox","download_url":"https://codeload.github.com/nesbox/emulator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesbox%2Femulator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28838486,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T02:10:51.810Z","status":"ssl_error","status_checked_at":"2026-01-28T02:10:50.806Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T05:01:10.625Z","updated_at":"2026-01-28T04:34:46.542Z","avatar_url":"https://github.com/nesbox.png","language":"ActionScript","readme":"Nesbox Emulator\n========\n\nNESbox is an emulator of NES, Super Nintendo, Sega Mega Drive and GameBoy video consoles, built on Adobe Flash technology and it can only be run directly in your browser's window.\n\nHow to embed the emulator to your webpage?\n--------\n\nGet all .swf files in /bin folder and upload to your server (for example to /flash folder).\nAdd the following html to page where you want to place the emulator.\n\n```html\n\n\u003cdiv\u003e\n\t\u003cdiv id=\"emulator\"\u003e\n\t\t\u003cp\u003eTo play this game, please, download the latest Flash player!\u003c/p\u003e\n\t\t\u003cbr\u003e\n\t\t\u003ca href=\"http://www.adobe.com/go/getflashplayer\"\u003e\n\t\t\t\u003cimg src=\"//www.adobe.com/images/shared/download_buttons/get_adobe_flash_player.png\" alt=\"Get Adobe Flash player\"/\u003e\n\t\t\u003c/a\u003e\n\t\u003c/div\u003e\n\u003c/div\u003e\n\n\u003cscript src=\"//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js\"\u003e\u003c/script\u003e\n\n\u003cscript type=\"text/javascript\"\u003e\n\n\tvar resizeOwnEmulator = function(width, height)\n\t{\n\t\tvar emulator = $('#emulator');\n\t\temulator.css('width', width);\n\t\temulator.css('height', height);\n\t}\n\n\t$(function()\n\t{\n\t\tfunction embed()\n\t\t{\n\t\t\tvar emulator = $('#emulator');\n\t\t\tif(emulator)\n\t\t\t{\n\t\t\t\tvar flashvars = \n\t\t\t\t{\n\t\t\t\t\tsystem : 'sega',\n\t\t\t\t\turl : '/roms/Flappy Bird (PD) v1.0.gen'\n\t\t\t\t};\n\t\t\t\tvar params = {};\n\t\t\t\tvar attributes = {};\n\t\t\t\t\n\t\t\t\tparams.allowscriptaccess = 'sameDomain';\n\t\t\t\tparams.allowFullScreen = 'true';\n\t\t\t\tparams.allowFullScreenInteractive = 'true';\n\t\t\t\t\n\t\t\t\tswfobject.embedSWF('flash/Nesbox.swf', 'emulator', '640', '480', '11.2.0', 'flash/expressInstall.swf', flashvars, params, attributes);\n\t\t\t}\n\t\t}\n\t\t\n\t\tembed();\n\t});\n\t\n\u003c/script\u003e\n\n```\n\nSupported systems: nes, snes, sega, gb, gba\n\nLicense\n----\n\nMIT\n","funding_links":[],"categories":["Apps \u0026 Tools","Runtimes"],"sub_categories":["Emulators"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesbox%2Femulator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnesbox%2Femulator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesbox%2Femulator/lists"}