Push middleware basics
This commit is contained in:
10
index.js
10
index.js
@@ -6,7 +6,15 @@ app = express()
|
|||||||
app.use(bodyParser.urlencoded({extended:false}))
|
app.use(bodyParser.urlencoded({extended:false}))
|
||||||
app.use(bodyParser.json())
|
app.use(bodyParser.json())
|
||||||
|
|
||||||
app.post('/filepath')
|
//Attempt to upload a file
|
||||||
|
app.put('/files/upload',(req,res)=>{
|
||||||
|
console.log("Upload attempted")
|
||||||
|
})
|
||||||
|
|
||||||
|
//Get file details
|
||||||
|
app.post('/files/ls',(req,res)=>{
|
||||||
|
console.log("Request attempted")
|
||||||
|
})
|
||||||
|
|
||||||
app.get('/',express.static('static'));
|
app.get('/',express.static('static'));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user