首页 > 其他 > 详细

学习Electorn(1)——Hello World

时间:2019-11-09 20:04:44      阅读:117      评论:0      收藏:0      [点我收藏+]

环境

操作系统是Manjaro kde 18.01
按照官网文档:https://electronjs.org/docs
技术分享图片

安装node

https://nodejs.org/en/download/package-manager/
技术分享图片
因为是Manjaro所以选择arch

编辑器Manjaro上有Kate我又安装了vscode

安装Electorn

https://electronjs.org/docs/tutorial/first-app#installing-electron

[kun@kun-pc WorkSpace]$ npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.

See `npm help json` for definitive documentation on these fields
and exactly what they do.

Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.

Press ^C at any time to quit.
package name: (workspace) myFirstElectornApp
Sorry, name can no longer contain capital letters.
package name: (workspace) foo
version: (1.0.0) 
description: 
entry point: (index.js) 
test command: 
git repository: 
keywords: 
author: 
license: (ISC) 
About to write to /home/kun/WorkSpace/package.json:

{
  "name": "foo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}


Is this OK? (yes) 
[kun@kun-pc WorkSpace]$ ls
gtk_foobar_app  package.json
[kun@kun-pc WorkSpace]$ cat package.json 
{
  "name": "foo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}
[kun@kun-pc WorkSpace]$ 

学习Electorn(1)——Hello World

原文:https://www.cnblogs.com/feipeng8848/p/11827288.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!