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 |
Tags
- mapreduce
- GIT
- es6
- SSL
- table
- tomcat
- JavaScript
- 보조정렬
- IntelliJ
- NPM
- mybatis
- Android
- Express
- Eclipse
- plugin
- Python
- window
- hadoop
- vaadin
- Sqoop
- Java
- Spring
- react
- xPlatform
- SPC
- MSSQL
- Kotlin
- R
- 공정능력
- SQL
Archives
- Today
- Total
DBILITY
node express server basic 본문
반응형
intellij를 사용해서 JavaScript->Node.js 프로젝트를 생성하면 npm init가 자동 실행된다.
Terminal을 열어 npm install express를 설치하고, nodemon도 설치해 준다.
다음은 express서버의 기초 코드로 nodemon server.js로 실행했다.
const express = require('express');
const app = express();
const port = process.env.PORT || 9090;
app.listen(port, () => {
console.log(`this server is listening port ${port}`);
});
app.get('/hello',(req,res)=>{
//res.json({message:'hello nodejs'});
//res.send('<h4>hello nodejs</h4>');
//res.sendStatus(200);
res.sendFile(__dirname+'/package.json',(e)=>{
console.log(e);
});
});
이렇게 간편할 수가 있나...
간단한 테스트API는 즉시 작성해서 쓰기에 편하겠다.
반응형
'nodejs' 카테고리의 다른 글
node MongoDB connection URL special characters in the password string (0) | 2021.12.15 |
---|
Comments