투케이2K

210. (NodeJs) [Mac Os] [문법] : Struct 구조체 사용해 데이터 삽입 및 JSON 변환 실시 - JSON.stringify 본문

NodeJs

210. (NodeJs) [Mac Os] [문법] : Struct 구조체 사용해 데이터 삽입 및 JSON 변환 실시 - JSON.stringify

투케이2K 2024. 3. 1. 07:01

[개발 환경 설정]

개발 툴 : VS CODE

개발 언어 :NodeJs

 

[소스 코드]

// ----------------------------------------------------------------------------------------------

// ---------------------------------------
// [모듈 추가]
// ---------------------------------------
const express = require('express')
const app = express()



// ---------------------------------------
// [모듈 추가]
// ---------------------------------------
app.set('view engine', 'ejs') // [Page] : [Render]
app.set('views', './views') // [Page] : [Render]



// ---------------------------------------
// [모듈 추가]
// ---------------------------------------
var bodyParser = require('body-parser'); // [body-parser 사용]

app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());



// ---------------------------------------
// [모듈 추가]
// ---------------------------------------
var nocache = require('nocache'); // [nocache 사용]
app.use(nocache());

// ----------------------------------------------------------------------------------------------

// [Server] : [Start]
//*
app.listen(3000, async function () {
    console.log("")
    console.log("==============================================================================")
    console.log("[Server] :: [Port = 3000] :: [Start]")
    console.log("==============================================================================")
    console.log("")

    // [객체 생성 실시]
    var userData = {
        name: "twok",
        age: 29
    }

    // [JSON.stringify 사용해 JSON 데이터 만들기]
    var jsonData = JSON.stringify(userData);

    // [로그 출력 실시]
    console.log("")
    console.log("==============================================================================")
    console.log("[Server] :: [Port = 3000] :: [Log]")
    console.log("--------------------------------------------------------------------------")
    console.log(jsonData)
    console.log("==============================================================================")
    console.log("")
})
// */

// ----------------------------------------------------------------------------------------------
 

[결과 출력]


반응형
Comments