electron学习笔记(二) 创建项目

项目结构

一个最简单的 electron 项目包含以下文件

your-app/
——package.json(应用项目的入口)
——index.js
——index.html

使用 npm 创建文件

在任意位置创建 app 项目的文件夹
使用命令提示符,cd 到 app 所在的文件夹位置,再使用 npm init 命令创建项目的基础文件:

C:\Users\admin>e:
E:>cd E:\file\file\electron\helloworld
E:\file\file\electron\helloworld>npm init

随后命令会提示你输入项目的信息

name: (helloworld) hellowrld
version: (1.0.0) 0.1.0
description: my first app
entry point: (index.js) 1
test command:
git repository:
keywords:
author: darkmorn
license: (ISC)

输入完毕后会在 app 的目录下自动创建一个 package.json 文件:

{
   
  "name": "hellowrld",
  "version": "0.1.0",
  "description": "my first app",
  "main": "index.js",
  "scripts": {
   
    "test"<

你可能感兴趣的:(electron,electron,学习笔记)