Browse Source

Remove redundant code in test server

Ben Hsieh 8 years ago
parent
commit
55c534765e
1 changed files with 0 additions and 12 deletions
  1. 0
    12
      test-server/server.js

+ 0
- 12
test-server/server.js View File

41
 app.get('/redirect', function(req, res) {
41
 app.get('/redirect', function(req, res) {
42
   res.redirect('/public/github.png')
42
   res.redirect('/public/github.png')
43
 })
43
 })
44
-// handle octet-stream request
45
-app.post('/upload', function(req, res){
46
 
44
 
47
-  console.log(req.headers)
48
-  console.log(req.body)
49
-  fs.writeFile('./uploads/file'+Date.now()+'.png', req.body,function(err){
50
-    if(!err)
51
-      res.status(200).send({ message : 'ok'})
52
-    else
53
-      res.status(500).send({ message : err})
54
-  })
55
-
56
-})
57
 // return an empty response
45
 // return an empty response
58
 app.all('/empty', function(req, res) {
46
 app.all('/empty', function(req, res) {
59
   res.send('')
47
   res.send('')