글 쓰기, 수정, 삭제가 가능한 간단한 blog 프로그램입니다. frontend는 react, backend는 node.js로 구현되었습니다.
project-root/
├── models/
│ └── Content.js
├── routes/
│ └── index.js
├── app.js
├── package.json
└── README.md- 우측 상단 '+' 버튼을 누르면 제목과 본문을 작성할 수 있습니다.
- 'save'를 누르면 데이터가 데이터베이스에 저장됩니다. (author는 임의로 'ellie'가 작성됩니다. 추후 로그인 기능 구현 후 업데이트 예정)
- 작성된 글을 확인할 수 있으며 수정과 삭제가 가능합니다.
- 우측 상단 리스트 버튼을 누르면 글 목록을 확인할 수 있습니다.
- 게시글 리스트에서 각 글을 클릭하면 세부 내용과 작성 시간을 확인할 수 있습니다.
git clone https://github.com/PARK-SSOYEON/Blog_Node_Back.git
cd Blog_Node_Back
npm install
//other terminal (�Frontend)
git clone https://github.com/PARK-SSOYEON/Blog_Front.git
git clone https://github.com/PARK-SSOYEON/Blog_Node_Back.git
cd Blog_Front
npm install//Blog_Front
npm start
//http://localhost:5173/posts
//Blog_Node_Back
npm start