Clone and run for a quick way to see Google Keep desktop application in action.
This is an Electron application based on the Quick Start Guide within the Electron JS documentation.
A breif description of files:
package.json
- Points to the app's main file and lists its details and dependencies.main.js
- Starts the app and creates a browser window to render HTML. This is the app's main process.store.js
- Maintains the app window size while closing and launching.index.html
- A web page to render. This is the app's renderer process.
You can learn more about each of these components within the Quick Start Guide.
The easiest way to get started is to clone the repository. From your command line:
# Clone this repository
git clone https://github.com/zcam007/Google-Keep-Desktop-App.git
# Go into the repository
cd Google-Keep-Desktop-App
# Install dependencies
npm install
# Run the app
npm start
Note: If you're using Linux Bash for Windows, see this guide or use node
from the command prompt.
- electronjs.org/docs - all of Electron's documentation
- electronjs.org/community#boilerplates - sample starter apps created by the community
- electron/electron-quick-start - a very basic starter Electron app
- electron/simple-samples - small applications with ideas for taking them further
- electron/electron-api-demos - an Electron app that teaches you how to use Electron
- hokein/electron-sample-apps - small demo apps for the various Electron APIs