Node.js - MySQL

Node.js의 DB 설정정보 정리정돈

수업소개

Node.js 웹앱에서 데이터베이스의 설정정보를 별도의 파일로 분리하는 방법에 대해서 소개해드립니다. 

 

 

 

강의

 

 

 

소스코드

변경사항

main.js


var http = require('http');
var url = require('url');
var qs = require('querystring');
var template = require('./lib/template.js');
var db = require('./lib/db');

var app = http.createServer(function(request,response){
    var _url = request.url;
    var queryData = url.parse(_url, true).query;
    var pathname = url.parse(_url, true).pathname;
    if(pathname === '/'){
      if(queryData.id === undefined){
        db.query(`SELECT * FROM topic`, function(error,topics){
          var title = 'Welcome';
          var description = 'Hello, Node.js';
          var list = template.list(topics);
          var html = template.HTML(title, list,
            `<h2>${title}</h2>${description}`,
            `<a href="/create">create</a>`
          );
          response.writeHead(200);
          response.end(html);
        });
      } else {
        db.query(`SELECT * FROM topic`, function(error,topics){
         if(error){
           throw error;
         }
         db.query(`SELECT * FROM topic LEFT JOIN author ON topic.author_id=author.id WHERE topic.id=?`,[queryData.id], function(error2, topic){
           if(error2){
             throw error2;
           }
           console.log(topic);
          var title = topic[0].title;
          var description = topic[0].description;
          var list = template.list(topics);
          var html = template.HTML(title, list,
            `
            <h2>${title}</h2>
            ${description}
            <p>by ${topic[0].name}</p>
            `,
            ` <a href="/create">create</a>
                <a href="/update?id=${queryData.id}">update</a>
                <form action="delete_process" method="post">
                  <input type="hidden" name="id" value="${queryData.id}">
                  <input type="submit" value="delete">
                </form>`
          );
          response.writeHead(200);
          response.end(html);
         })
      });
      }
    } else if(pathname === '/create'){
      db.query(`SELECT * FROM topic`, function(error,topics){
        db.query('SELECT * FROM author', function(error2, authors){
          var title = 'Create';
          var list = template.list(topics);
          var html = template.HTML(title, list,
            `
            <form action="/create_process" method="post">
              <p><input type="text" name="title" placeholder="title"></p>
              <p>
                <textarea name="description" placeholder="description"></textarea>
              </p>
              <p>
                ${template.authorSelect(authors)}
              </p>
              <p>
                <input type="submit">
              </p>
            </form>
            `,
            `<a href="/create">create</a>`
          );
          response.writeHead(200);
          response.end(html);
        });
      });
    } else if(pathname === '/create_process'){
      var body = '';
      request.on('data', function(data){
          body = body + data;
      });
      request.on('end', function(){
          var post = qs.parse(body);
          db.query(`
            INSERT INTO topic (title, description, created, author_id) 
              VALUES(?, ?, NOW(), ?)`,
            [post.title, post.description, post.author], 
            function(error, result){
              if(error){
                throw error;
              }
              response.writeHead(302, {Location: `/?id=${result.insertId}`});
              response.end();
            }
          )
      });
    } else if(pathname === '/update'){
      db.query('SELECT * FROM topic', function(error, topics){
        if(error){
          throw error;
        }
        db.query(`SELECT * FROM topic WHERE id=?`,[queryData.id], function(error2, topic){
          if(error2){
            throw error2;
          }
          db.query('SELECT * FROM author', function(error2, authors){
            var list = template.list(topics);
            var html = template.HTML(topic[0].title, list,
              `
              <form action="/update_process" method="post">
                <input type="hidden" name="id" value="${topic[0].id}">
                <p><input type="text" name="title" placeholder="title" value="${topic[0].title}"></p>
                <p>
                  <textarea name="description" placeholder="description">${topic[0].description}</textarea>
                </p>
                <p>
                  ${template.authorSelect(authors, topic[0].author_id)}
                </p>
                <p>
                  <input type="submit">
                </p>
              </form>
              `,
              `<a href="/create">create</a> <a href="/update?id=${topic[0].id}">update</a>`
            );
            response.writeHead(200);
            response.end(html);
          });
          
        });
      });
    } else if(pathname === '/update_process'){
      var body = '';
      request.on('data', function(data){
          body = body + data;
      });
      request.on('end', function(){
          var post = qs.parse(body);
          db.query('UPDATE topic SET title=?, description=?, author_id=? WHERE id=?', [post.title, post.description, post.author, post.id], function(error, result){
            response.writeHead(302, {Location: `/?id=${post.id}`});
            response.end();
          })
      });
    } else if(pathname === '/delete_process'){
      var body = '';
      request.on('data', function(data){
          body = body + data;
      });
      request.on('end', function(){
          var post = qs.parse(body);
          db.query('DELETE FROM topic WHERE id = ?', [post.id], function(error, result){
            if(error){
              throw error;
            }
            response.writeHead(302, {Location: `/`});
            response.end();
          });
      });
    } else {
      response.writeHead(404);
      response.end('Not found');
    }
});
app.listen(3000);

 

lib/db.js

실제 데이터베이스 정보가 저장된 파일 (버전관리하면 안됨)

var mysql = require('mysql');
var db = mysql.createConnection({
  host:'localhost',
  user:'root',
  password:'111111',
  database:'opentutorials'
});
db.connect();
module.exports = db;

 

lib/db.template.js

데이터베이스 정보에 대한 샘플 파일. (버전관리함)

var mysql = require('mysql');
var db = mysql.createConnection({
  host:'',
  user:'',
  password:'',
  database:''
});
db.connect();
module.exports = db;

 

.gitignore

lib/db.js 파일을 버전관리에서 제외 (git)

lib/db.js

 

댓글

댓글 본문
  1. 감자
    22.12.20
  2. 당당
    2022.11.12
  3. 화려하게간다
    일단 화긴~
  4. 케굴
    2021-12-30
  5. labis98
    20210802 good!!!
  6. hanel_
    21.3.25
  7. chimhyangmoo
    21.03.17
  8. jeisyoon
    2021.03.12 MySQL DB 설정정보 정리 - OK
  9. 김지호
    21 01 03
  10. 생활둘기
    2021 1 3
  11. 콜라
    20201022 완료
  12. Keun Yong Lee
    db.js에서 db.connect(); 를 삭제하고 실행해도 똑같이 작동이 되던데 어떻게 이해해야 할까요?
  13. Jonghwo Lee
    완료
  14. 준바이
    감사합니다
  15. 굼벵이
    완료
  16. ㅊㅎㅇ
    친절한 설명 감사합니다 :)
    대화보기
    • ㄷㄹㄷㄹ
      사실 비밀번호 같은 중요한 정보는 파일 따로 뺀다음 런타임에 값불러오고 버전관리 통해서 그 파일은 올라가지 않게 하는게 되게 중요합니다. aws 다뤄보신 분들은 바로 이해하실듯 안가리고 깃헙같은데 코드 올리면 1~2일 사이에 계정 탈취되서 비트코인 채굴 당합니다. 10~20만원 결제되는 기적이...
    • leesj020925@naver.com
      마지막 부분에서 예기하신 db.js 를 버전관리 시스템에 넣을 때에 관련된 강좌링크가 있나요?
    • 연수아빠
      수강완료!!
    버전 관리
    egoing
    현재 버전
    선택 버전
    graphittie 자세히 보기