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
narakorn vichianchai
nodejs-60-2
Commits
4d931bc8
Commit
4d931bc8
authored
Feb 14, 2018
by
Littichai Buddaken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
week05 ขอ 5 คะแนนครับ
parent
3cdc7408
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
0 deletions
+57
-0
index.html
week05/windowapp/index.html
+16
-0
main.js
week05/windowapp/main.js
+25
-0
package-lock.json
week05/windowapp/package-lock.json
+0
-0
package.json
week05/windowapp/package.json
+16
-0
No files found.
week05/windowapp/index.html
0 → 100644
View file @
4d931bc8
<!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>
and Electron เวอร์ชั่น
<script>
document
.
write
(
process
.
versions
.
electron
)
</script></li>
.
</ol>
</body>
</html>
week05/windowapp/main.js
0 → 100644
View file @
4d931bc8
const
{
app
,
BrowserWindow
}
=
require
(
'electron'
)
const
path
=
require
(
'path'
)
const
url
=
require
(
'url'
)
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let
win
function
createWindow
()
{
// Create the browser window.
win
=
new
BrowserWindow
({
width
:
800
,
height
:
600
})
// and load the index.html of the app.
win
.
loadURL
(
url
.
format
({
pathname
:
path
.
join
(
__dirname
,
'index.html'
),
protocol
:
'file:'
,
slashes
:
true
}))
win
.
on
(
'closed'
,
()
=>
{
win
=
null
})
}
app
.
on
(
'ready'
,
createWindow
)
week05/windowapp/package-lock.json
0 → 100644
View file @
4d931bc8
This diff is collapsed.
Click to expand it.
week05/windowapp/package.json
0 → 100644
View file @
4d931bc8
{
"name"
:
"windowapp"
,
"version"
:
"1.0.0"
,
"description"
:
""
,
"main"
:
"main.js"
,
"scripts"
:
{
"app"
:
"./node_modules/electron/dist/electron ."
,
"echo"
:
"touch สวัสดี"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Four"
,
"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