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
- mySQL_Replication
- DatePicker
- allow_anonymouse
- setInterval 중지
- transfer
- 공인IP
- timepicker
- pm2 확인
- pm2 시작
- pm2 상태 확인
- mosquitto.conf
- setInterval clear
- DataGridView 직접 입력
- setInterval 외부 정지
- 맥 어드레스
- c# datagridview 데이터 넣기
- 서버동기화
- mosquitto
- datagridview 직접입력
- pm2 설치
- listener 1883
- 1883
- html #select #option #multiple
- pm2
- Replication
- setInterval 정지
- map이 undefined가 뜰 때
- invalid data
- 데이터테이블 데이터 넣기
- AntDesign
Archives
- Today
- Total
개발 노트
Node js 시작하기 본문
프로젝트 폴더에서 package.json 파일 생성(다음 명령어는 세팅을 생략하는 명령어이다)
npm init -y
express 설치
npm install express
app.js 파일 생성
const express = require('express'); const app = express(); const port = 3000;
app.get('/', (req, res) => {
res.send('Hello, World!');
});
app.listen(port, () => {
console.log(server Start!. http://localhost:${port});
})
서버실행 명령어
node app.js
접속 URL
http://localhost:3000
'Node' 카테고리의 다른 글
require()와 module.exports (0) | 2023.12.19 |
---|---|
NodeJS 크롤링 시작하기 (0) | 2023.11.08 |
MQTT 메세지 받아서 DB에 저장 - 프로그램 시작 시 DB가 연결되지 않은 경우 (0) | 2023.09.25 |
MQTT 메세지 받아서 DB에 저장 (0) | 2023.09.25 |
mySQL에서 connection pool 사용 (0) | 2023.09.21 |