Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김동훈
/
OpenSource_Project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Donghoon Kim
2018-12-14 09:18:48 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ae65eb55317b44c74ac07f4b186f128782180742
ae65eb55
1 parent
5b290eb1
failed at routing
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
102 deletions
app.js
bin/www
app.js
View file @
ae65eb5
var
express
=
require
(
'express'
);
var
app
=
express
();
var
fs
=
require
(
'fs'
)
app
.
use
(
'/'
,(
req
,
res
)
=>
{
res
.
writeHead
(
200
,
{
'Content-Type'
:
'text/html'
})
fs
.
readFile
(
__dirname
+
'/public/index.html'
,
(
err
,
data
)
=>
{
if
(
err
)
{
console
.
error
(
err
)
return
res
.
status
(
500
).
json
(
err
)
}
else
res
.
end
(
data
,
'utf-8'
)
})
})
var
server
=
app
.
listen
(
3000
);
...
...
bin/www
deleted
100755 → 0
View file @
5b290eb
#!/usr/bin/env node
/**
* Module dependencies.
*/
var
app
=
require
(
'../app'
);
var
debug
=
require
(
'debug'
)(
'test:server'
);
var
http
=
require
(
'http'
);
/**
* Get port from environment and store in Express.
*/
var
port
=
normalizePort
(
process
.
env
.
PORT
||
'3000'
);
app
.
set
(
'port'
,
port
);
/**
* Create HTTP server.
*/
var
server
=
http
.
createServer
(
app
);
/**
* Listen on provided port, on all network interfaces.
*/
server
.
listen
(
port
);
server
.
on
(
'error'
,
onError
);
server
.
on
(
'listening'
,
onListening
);
/**
* Normalize a port into a number, string, or false.
*/
function
normalizePort
(
val
)
{
var
port
=
parseInt
(
val
,
10
);
if
(
isNaN
(
port
))
{
// named pipe
return
val
;
}
if
(
port
>=
0
)
{
// port number
return
port
;
}
return
false
;
}
/**
* Event listener for HTTP server "error" event.
*/
function
onError
(
error
)
{
if
(
error
.
syscall
!==
'listen'
)
{
throw
error
;
}
var
bind
=
typeof
port
===
'string'
?
'Pipe '
+
port
:
'Port '
+
port
;
// handle specific listen errors with friendly messages
switch
(
error
.
code
)
{
case
'EACCES'
:
console
.
error
(
bind
+
' requires elevated privileges'
);
process
.
exit
(
1
);
break
;
case
'EADDRINUSE'
:
console
.
error
(
bind
+
' is already in use'
);
process
.
exit
(
1
);
break
;
default
:
throw
error
;
}
}
/**
* Event listener for HTTP server "listening" event.
*/
function
onListening
()
{
var
addr
=
server
.
address
();
var
bind
=
typeof
addr
===
'string'
?
'pipe '
+
addr
:
'port '
+
addr
.
port
;
debug
(
'Listening on '
+
bind
);
}
Please
register
or
login
to post a comment