Skip to content

cs3b/electron-multiwindow-notification-app

Repository files navigation

nat-app

From manage window you can control notifications on the second window (separate screen).

  • start, stop, restart timer

Time Elapsed

  • send simple messsage

Simple Message

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone https://github.com/cs3b/electron-multiwindow-notification-app.git this repository
  • cd nat-app
  • npm install

Running / Development

ember electron

Building

For detailed instructions look at: https://github.com/electron-userland/electron-packager

ember electron:package
# if you have error about missing npm packages
zsh -c "cd tmp/electron-build-tmp && npm i"
# and run package once again
ember electron:package
# after successfull build remove unneeded node_modules (it will reduce package size by ~300M) 
rm -rf electron-builds/nat-app-win32-x64/resources/app/node_modules

By default it will build win x64 build - see package.json if you want to change the platform.

Further Reading / Useful Links