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
- listtile
- get과 post
- 라이브러리
- Node js
- 욕 필터링
- 기본코드
- 기본 개념
- 책 정보
- 독도갈매기
- 주석 추가
- 리스트 아이템
- 글자 변경
- async
- await
- liquid_swipe
- 취준생?!
- 인사글
- flutter 2.0
- 비동기
- null_safety
- pubspec.yaml
- 해석
- Future
- IT특성화 학생
- pub.dev
- flutter
- delayed
- text overflow
- javascript
- null-safety
Archives
- Today
- Total
목록주석 추가 (1)
This is unimportant

오늘은 차근차근 배우기 위해서 독도갈매기 github에서 socket.io와 node.js를 이용해서 만든 채팅 앱에 주석을 달면서 이해해 보려고 합니다. 먼저 아래와 같이 기본 설정을 해줍니다. npm init npm install express npm install socket.io 파일은 총 만드는 파일은 2개로 index.html과 서버로 사용할 server.js를 만들었습니다. index.html server.js //기본 설정 const express = require('express'); const app = express(); const http = require('http').Server(app); const io = require('socket.io')(http); //index.htm..
Node Js
2021. 3. 25. 21:09