일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CSS
- OOP
- 리액트
- frontend
- REACT
- 추상화
- webdevelopment
- 논리연산자
- 타입스크립트
- 상속
- 불변성
- 캡슐화
- JavaScript
- Fetch
- Props
- 패스트캠퍼스
- 객체지향프로그래밍
- 웹개발
- js
- typeScript
- 투두앱만들기
- 자바스트립트
- Zustand
- 부트캠프
- 자바스크립트
- 노마드코더
- 프론트엔드
- 클래스
- github
- Hooks
Archives
- Today
- Total
목록jsonserver (1)
connecting dots

json-servernpm i -D json-server concurrently// json-server랑 vite 서버 동시에 켜기 위해서 concurrently pakage.json"scripts": { "watch:json-server": "json-server db.json --port 1234", // db.json 파일을 실행 "watch:vite": "vite", "dev": "concurrently npm:watch:*", db.json데이터 베이스 직접 만들기{ "todos": [ { "id": "abc", "title": "hello world", "done": false } ], "users": [], "posts": ..
Live Class/Beginner
2024. 8. 28. 10:03