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
Chantrarat Sinrueangsri
nodejs-60-2
Commits
c50349bb
Commit
c50349bb
authored
Feb 14, 2018
by
Chantrarat Sinrueangsri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
week05
parent
ec63eb23
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
66 additions
and
0 deletions
+66
-0
index.html
week05/windowapp/index.html
+28
-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
สวัสดี
week05/windowapp/สวัสดี
+0
-0
No files found.
week05/windowapp/index.html
0 → 100644
View file @
c50349bb
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
สวัสดีชาวโลก
</title>
</head>
<body>
<h1>
สวัสดีชาวโลก
</h1>
<ul>
<li>
We are using 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>
</ul>
</body>
</html>
\ No newline at end of file
week05/windowapp/main.js
0 → 100644
View file @
c50349bb
const
{
app
,
BrowserWindow
}
=
require
(
'electron'
)
const
path
=
require
(
'path'
)
const
url
=
require
(
'url'
)
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
(
'close'
,()
=>
{
win
=
null
})
}
app
.
on
(
"ready"
,
createWindow
)
week05/windowapp/package-lock.json
0 → 100644
View file @
c50349bb
This diff is collapsed.
Click to expand it.
week05/windowapp/package.json
0 → 100644
View file @
c50349bb
{
"name"
:
"windowapp"
,
"version"
:
"1.0.0"
,
"description"
:
""
,
"main"
:
"main.js"
,
"scripts"
:
{
"app"
:
"./node_modules/electron/dist/electron ."
,
"อันตราย"
:
"rm -rf *"
,
"touch"
:
"touch สวัสดี"
,
"echo"
:
"echo ดีจย้า"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Jun"
,
"license"
:
"ISC"
,
"devDependencies"
:
{
"electron"
:
"^1.8.2"
}
}
week05/windowapp/สวัสดี
0 → 100644
View file @
c50349bb
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