Node.js 기본 서버 구축
2021. 12. 26. 22:32ㆍPROJECT/SIDE PROJECT
npm init
yarn add express dotenv
npm install -g nodemon ts-node
.prettierrc
trailingComma: "es5"
tabWidth: 2
semi: true
singleQuote: false
index.js
import express from "express";
const app = express();
app.listen(3000, () => {
console.log("hi");
});
app.get("/", (req, res) => {
res.send("hello");
});
'PROJECT > SIDE PROJECT' 카테고리의 다른 글
[React.js] Recoil 잘 써보기 (0) | 2021.08.05 |
---|---|
[React] Excel 다운로드 & 업로드 (0) | 2021.06.20 |