Implementation of classic Windows 95 Solitaire game using React + Typescript
Repository is structured as a monorepo.
Solitaire game component with all of the logic and code is in components/solitaire95
directory.
There are two example apps that are using solitaire95
package and provided by it component <Solitaire95 />
. Electron + react app and react web app.
Both of them in application
directory.
Work in progress.
- clone repo
- run
yarn install
to install packages. That command will runlerna bootstrap
so in case of problems checklerna
package on your machine - run
yarn start:web
to run web app - run
yarn start:desktop
to run electron app
Haven't tried to run with npm
so there might be problems. yarn
preffered.
There is still a lot of work in progress. Final app should be as close to original app as possible.
Project created for educational purposes only.