This is one of the exercise from the course that experiments with application menus.
For this application menu, we're not making a particular app, we're just experimenting with the application menus to get ideas on how we might use this in a future project. The application menu is that bar of dropdown menus that usually appears at the top of the screen or window. It commonly contains menu options like File, Edit or View. In Electron, it's called the Menu module. Let's try it out. Now every project that we make will need its own directory."
- npm init -y
- npm install electron --save-dev
- npm start
- git init
- git config --global user.name "wmc777"
- git config --global user.emil "[email protected]"
- git config --global color.ui auto
- git remote add origin [email protected]:wmc777/electron-menu-demo.git
- git add *
- git commit -m "commit message"
- git commit -a -m "commit message"
- git push origin master