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
- rewrites
- nextjs
- react
- CSS
- react typescript
- createGlobalStyle
- bootstrap
- git lab
- API token
- github io
- nextjs .env
- nextjs 설치
- typescript react
- API 토큰
- dart 변수
- npm styled-reset
- input type=file
- react env
- github
- getModifierState
- fetch
- 컨디셔널 렌더링
- ngrok실행
- next.js css
- SCSS
- icon
- Git
- styled components
- ngrok설치
- There isn’t anything to compare
Archives
- Today
- Total
목록Node.js (1)
꾸준히 성장하는 개발자

1. npm 프로젝트 시작 터미널 열고 npm init -y 2. 프로젝트 구조에 package.json 이 생성되어있음을 확인할 수 있음 3. 개발 서버 열기 개발하는 용도로만 사용할때에는 -D의 플래그를 붙여준다 npm i parcel-bundler -D 시간이 지나고 프로젝트 구조에 파일들이 더 생겨났다 준비끝!! 개발서버가 열릴 수 있게 package.json 파일로 이동하여 드래그되어 있는 부분을 지워주고 "scripts": { "dev":"parcel build index.html", "build": "parcel build index.html" }, 이라고 작성하고 터미널을 열어 npm run dev 를 작성하여 개발서버를 오픈한다. 만일 invaild version이라는 ..
JavaScript
2021. 12. 24. 15:31