Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2019-1-OpenSourceSW
/
StarCraft2 Build Recommendation
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
임에딘
2018-12-07 23:43:15 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bce2e5e85b2b330693a5d39a3001755276f61694
bce2e5e8
1 parent
12073734
add test.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
test.js
test.js
0 → 100644
View file @
bce2e5e
1
+
var
http
=
require
(
'http'
);
2
+
3
+
http
.
createServer
(
function
(
req
,
res
){
4
+
res
.
writeHead
(
200
,
{
'Content-Type'
:
'text/html'
});
5
+
res
.
end
(
'Hello World!'
);
6
+
}).
listen
(
8080
);
Please
register
or
login
to post a comment