Skip to content

alexwkleung/Desmos-Desktop

Repository files navigation

Desmos Desktop

⚠️ This is not an official desktop app for Desmos.

This is a basic desktop app that wraps around the Desmos API. The API is remotely fetched, so you'll need internet access.

Created with:

  • Desmos API
  • Electron
  • Icon: Twemoji 14.0 - Chart Increasing

Install (Direct)

Go to releases and install the latest version for your architecture (x64 or arm64).

Install (Manual)

Clone the repository

git clone <SSH/HTTPS>

Install npm dependencies

npm install 

Run the build step

make build 
#or 
npm run build

Package the app (x64)

make package 
#or 
npm run package

Package the app (arm64)

make package-arm
#or 
npm run package-arm

Open the .dmg and drag the .app to the Applications folder.

Development

Clone the repository

git clone <SSH/HTTPS>

Install npm dependencies

npm install 

Run the build step

make build 
#or 
npm run build

Run Electron on root

make electron
#or
npm run electron

Package the app for production (x64)

make package
#or
npm run package

Package the app for production (arm64)

make package-arm
#or 
npm run package-arm