Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3주차] 도전과제 제출 #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion seminar3-netflix/nodemon.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

{
"watch": ["src", ".env"],
"ext": "js,ts,json",
Expand Down
2 changes: 1 addition & 1 deletion seminar3-netflix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/node": "^18.11.10",
"nodemon": "^2.0.20"
}
}
2 changes: 0 additions & 2 deletions seminar3-netflix/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ app.use(express.json()); // express 에서 request body를 json 으로 받아오


app.use("/video", require("./video")); // use -> 모든 요청
// localhost:8000/api -> api 폴더
// localhost:8000/api/user -> user.ts


//* HTTP method - GET
Expand Down
Loading