安装 Git in windows


Git 官网:https://git-scm.com/

设置提交时的 NAME 和 EMAIL:

$ git config --global user.name "nikename"

$ git config --global user.email "example@example.com"

查看设置的 NAME 和 EMAIL:

$ git config user.name

$ git config user.email

Electron_01 - 快速启动

自己创建 Electron 应用

1. 使用 npm 初始化一个项目

$ mkdir my-app

$ cd my-app

$ npm init --y
Wrote to E:\my-app\package.json:
{
  "name": "my-app",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}

修改入口文件为 main.js 并且添加 start 脚本引导 Node 来执行 Electron

阅读全文