You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
yonghang 620de73aa8 fix: 🐛 修复electron使用loadFile方式加载项目时未记住用户登录信息的问题 1 year ago
.github ci: add new issues and pull requests to project board (#862) 2 years ago
.idea go 1 year ago
.gitignore fix: 🐛 修复桌面程序中preload.js不生效导致记住密码复选框始终显示的问题 1 year ago
LICENSE.md Change license to CC0 10 years ago
README.md docs: fix tutorial hyperlink 3 years ago
icon.ico init 1 year ago
index.html CORS: Allow inline CSS and style attributes 4 years ago
main.js fix: 🐛 修复electron使用loadFile方式加载项目时未记住用户登录信息的问题 1 year ago
package-lock.json go 1 year ago
package.json fix: 🐛 修复桌面程序中preload.js不生效导致记住密码复选框始终显示的问题 1 year ago
preload.js go 1 year ago
renderer.js docs: update comments to reflect new defaults (#643) 3 years ago
styles.css feat: add default css file (#533) 4 years ago

README.md

electron-quick-start

Clone and run for a quick way to see Electron in action.

This is a minimal Electron application based on the Quick Start Guide within the Electron documentation.

A basic Electron application needs just these 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.
  • index.html - A web page to render. This is the app's renderer process.
  • preload.js - A content script that runs before the renderer process loads.

You can learn more about each of these components in depth within the Tutorial.

To 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:

# Clone this repository
git clone https://github.com/electron/electron-quick-start
# Go into the repository
cd electron-quick-start
# 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.

Resources for Learning Electron

License

CC0 1.0 (Public Domain)