Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
nodejs-60-2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Supharoek Sudadet
nodejs-60-2
Commits
e2a294ac
Commit
e2a294ac
authored
Feb 14, 2018
by
Supharoek Sudadet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add desktop application example
parent
60bcd0cc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
0 deletions
+55
-0
index.html
week05/windowapp/index.html
+17
-0
main.js
week05/windowapp/main.js
+20
-0
package-lock.json
week05/windowapp/package-lock.json
+0
-0
package.json
week05/windowapp/package.json
+18
-0
No files found.
week05/windowapp/index.html
0 → 100644
View file @
e2a294ac
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
สวัสดีชาวโลก
</title>
</head>
<body>
<h1>
สวัสดีชาวโลก
</h1>
เราใช้
<ol>
<li>
node เวอร์ชัน
<script>
document
.
write
(
process
.
versions
.
node
)
</script></li>
<li>
Chrome เวอร์ชัน
<script>
document
.
write
(
process
.
versions
.
chrome
)
</script></li>
<li>
และ Electron เวอร์ชัน
<script>
document
.
write
(
process
.
versions
.
electron
)
</script></li>
</ol>
</body>
</html>
\ No newline at end of file
week05/windowapp/main.js
0 → 100644
View file @
e2a294ac
const
{
app
,
BrowserWindow
}
=
require
(
'electron'
)
const
path
=
require
(
'path'
)
const
url
=
require
(
'url'
)
let
win
function
createWindow
()
{
win
=
new
BrowserWindow
({
width
:
800
,
height
:
600
})
win
.
loadURL
(
url
.
format
({
pathname
:
path
.
join
(
__dirname
,
'index.html'
),
protocol
:
'file:'
,
// 'http:'
slashes
:
true
})
)
win
.
on
(
'close'
,()
=>
{
win
=
null
})
}
app
.
on
(
'ready'
,
createWindow
)
week05/windowapp/package-lock.json
0 → 100644
View file @
e2a294ac
This diff is collapsed.
Click to expand it.
week05/windowapp/package.json
0 → 100644
View file @
e2a294ac
{
"name"
:
"windowapp"
,
"version"
:
"1.0.0"
,
"description"
:
""
,
"main"
:
"main.js"
,
"scripts"
:
{
"app"
:
"echo 'super duper' "
,
"อันตราย"
:
"rm -rf *"
,
"touch"
:
"touch สวัสดี"
,
"echo"
:
"echo สวัสดี"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"anon"
,
"license"
:
"ISC"
,
"devDependencies"
:
{
"electron"
:
"^1.8.2"
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment