Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags more
Archives
Today
Total
관리 메뉴

난 정말 최고야 멋있어

간단한 웹 서버 만들기(GET 쿼리 스트링 로그) 본문

카테고리 없음

간단한 웹 서버 만들기(GET 쿼리 스트링 로그)

n00bh4cker 2019. 12. 26. 10:42

사전 준비

 

npm init

npm install express -save

npm install nodemon -g 

 

const express = require('express')
const app = express()

app.get('/',(req,res)=>{
	for (const key in req.query)
    {
    	console.log(`${key} : ${req.query[key]}`)
    }
    res.send("hello")
})

app.listen(8080,()=>
{
	console.log('Server is Running...')	
})