Skip to content

Latest commit

 

History

History
71 lines (48 loc) · 1.15 KB

File metadata and controls

71 lines (48 loc) · 1.15 KB

FlashBrowser

A desktop browser for running Adobe Flash content using Electron.

Prerequisites

Install

git clone https://github.com/Cothlory/FlashBrowser.git
cd FlashBrowser
pnpm install --shamefully-hoist

Run

pnpm start

Uninstall

Remove the project directory:

cd ..
rm -rf FlashBrowser

Troubleshooting

Error: "Electron failed to install correctly"

Run this to manually trigger Electron's binary download:

npm_config_unsafe_perm=true pnpm install --shamefully-hoist

Or approve build scripts and reinstall:

pnpm approve-builds
pnpm install --shamefully-hoist

Error: "Cannot find module 'node:path'"

The postinstall script should create the necessary shims automatically. If you removed node_modules, re-run:

pnpm install --shamefully-hoist

Or manually run:

node ./scripts/create_shims.js

Compatibility note: This project uses Electron 10.x. For best compatibility, use Node 14.x or 16.x:

nvm install 16
nvm use 16
pnpm install --shamefully-hoist
pnpm start