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