This wraps the Outlook Web Application (OWA) in an Electron container for easy desktop usage. It adds features like auto-login, desktop notifications and S/MIME support.
This is a work in progress, is lacking many features and is most certainly not ready for productive use.
To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
Afer cloning, you need to copy electron-owa.json.example
to electron-owa.json
and update it with your OWA server URL.
# Clone this repository
git clone https://github.com/Doccrazy/electron-owa
# Go into the repository
cd electron-owa
# Install dependencies
npm install
# Rebuild electron native module
./node_modules/.bin/electron-rebuild -w edge
# Initialize settings
cp electron-owa.json.example electron-owa.json
# Run the app
npm start
To create an executable package of Electron OWA for your platform, run:
# Package for Windows
npm run package-win
# Package for Linux
npm run package-lin