Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sejong25
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Tear of Sejong
sejong25
Commits
d6f96205
Commit
d6f96205
authored
Jun 25, 2019
by
14이종민
🥝
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename script to js, add readme
parent
ee1dd7bf
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
1 deletion
+14
-1
README.md
README.md
+13
-0
Background.js
js/Background.js
+0
-0
Word.js
js/Word.js
+0
-0
main.js
js/main.js
+0
-0
phaser.js
js/phaser.js
+0
-0
server.js
server.js
+1
-1
No files found.
README.md
0 → 100644
View file @
d6f96205
# sejong25
## 필수
1.
nodejs 설치
2.
npm 설치
3.
npm install
-
package.json과 package-lock.json을 참고하여 필요한 모듈들을 자동으로 설치해 줌
## 서버
'''
$node server.js
'''
위 커맨드를 입력하면 서버가 실행됨
\ No newline at end of file
script
/Background.js
→
js
/Background.js
View file @
d6f96205
File moved
script
/Word.js
→
js
/Word.js
View file @
d6f96205
File moved
script
/main.js
→
js
/main.js
View file @
d6f96205
File moved
script
/phaser.js
→
js
/phaser.js
View file @
d6f96205
File moved
server.js
View file @
d6f96205
...
...
@@ -4,7 +4,7 @@ var server = require('http').Server(app);
var
io
=
require
(
'
socket.io
'
).
listen
(
server
);
app
.
use
(
'
/css
'
,
express
.
static
(
__dirname
+
'
/css
'
));
app
.
use
(
'
/
script
'
,
express
.
static
(
__dirname
+
'
/script
'
));
app
.
use
(
'
/
js
'
,
express
.
static
(
__dirname
+
'
/js
'
));
app
.
use
(
'
/assets
'
,
express
.
static
(
__dirname
+
'
/assets
'
));
app
.
get
(
'
/
'
,
function
(
req
,
res
)
{
...
...
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