码迷,mamicode.com
首页 > 其他好文 > 详细

学习Electorn(1)——Hello World

时间:2019-11-09 19:23:12      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:world   efi   cat   space   ejs   cto   workspace   enc   poi   

环境

操作系统是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

标签:world   efi   cat   space   ejs   cto   workspace   enc   poi   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!