Skip to content

wmc777/electron-menu-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example code from Pluralsight "Electron Fundamentals" course

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."

menu-demo electron configuration commands

  1. npm init -y
  2. npm install electron --save-dev
  3. npm start

git project setup commands

  1. git init
  2. git config --global user.name "wmc777"
  3. git config --global user.emil "[email protected]"
  4. git config --global color.ui auto
  5. git remote add origin [email protected]:wmc777/electron-menu-demo.git

git project workflow commands

add changes

  • git add *

commit changes

  • git commit -m "commit message"

add / commit changes

  • git commit -a -m "commit message"

pushing changes to remote repository

  • git push origin master

git reference

git - the simple guide GIT CHEAT SHEET

About

Electron example code and exercises

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published