Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- SimpleDateFormat
- 프로그래머스
- php
- bootstrapModal
- java
- 코딩테스트
- bootstrap
- 연습문제
- AJAX
- Fullcalendar
- 스킬체크
- 안드로이드
- Programmers
- 스킬체크테스트
- REACT
- Android
- level1
- MSSQL
- 코딩테스트연습
- 모달
- 백준
- Summer/WinterCoding
- 동적웹페이지
- 월간코드챌린지시즌3
- androidstudio
- 부트스트랩
- 월간코드챌린지시즌2
- 나머지가1
- Node
- modal
Archives
- Today
- Total
목록Express (1)
개발하는 고양이 오이
6. [React] Node.js - MSSQL연동 + Setting the TLS ServerName to an IP address is not permitted by RFC 6066 오류 해결
안녕하세요. 구글링을 하다보면, React에서 Node.js를 이용하여 Mysql연동은 많이 봤으나, Mssql연동 방법에 대해서는 많지 않아서 공유하고자 올립니다. 우선, React는 클라이언트 사이드로, Mssql와 연동하려면 Node.js를 이용하여 서버 사이드로 연동을 해야합니다. ① mssql 라이브러리 설치 npm install mssql ② Node.js 서버 생성 생성한 리액트 애플리케이션에 server 폴더를 생성하고, 내부에 server.js파일을 생성합니다. ③ server.js const express = require('express'); const app = express(); app.listen(8081, function () { console.log('listening on ..
React
2022. 10. 17. 10:18