일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PersistentVolumeClaim
- vue #vue-router
- sesstionstorage
- 맥 #나스 #SMA
- mixedcontent
- vuejs #pinia #vuetify3
- nextjs
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- basepath
- vuetify3
- PersistentVolume
- browserstorage
- Yarn
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- vworld
- vuejs
- javascript #localstorage #stringify #parse
- vue3
- CKEditor4
- kubernetes
- v-combobox
- javascript #컴파일 #인터프리터
- github action #tistory
- localstorage
- react
- postman
- MongoDB
- OpenLayers
- MPA
- JavaScript
- Today
- Total
목록전체 글 (39)
月亮
전제조건 : vue3, vue-router 프로젝트 생성 1. 컴포넌트 생성 // src/views/Home.vue Home Go To About Go To Profile // src/views/About.vue About Go To Home Go To Profile // path: src/views/Profile.vue Hello, this my profile page Go To Home 2. router.js 생성 // path: src/router/routes.ts import { RouteRecordRaw } from 'vue-router'; const routes: Array = [ { path: '/', name: 'Home', component: () => import(/* webpackCh..
Tistory와 Github 연동 1. Tistory RSS 설정 - 블로그 설정 - 블로그 - 기타설정 - RSS 전체공개 2. 확인 : 블로그/rss ex) https://yueliang-front-end.tistory.com/rss 3. Github Action으로 자동화하기 1). commit 할 repository 생성하기! 2). 로컬에 생성한 repository clone하기 3). npm init -y 4). rss-parser 설치 npm i rss-parser 5). package.json에 추가 "main": "index.js", "type": "module", "scripts": { "start": "node index.js" }, 6). 루트에 index.js 생성, 입력 impo..
homeserver : 자신의 집에서 서버를 운영하는 방법 공유기=router 컴퓨터들이 정보를 주고 받아야해서 ip address가 필요하다 공유기=라우터 WAN (wide area network) : 광역네트워크 LAN (local area network) : 지역네트워크 gateway address, router address : 공유기에 부여됨 ,ex)192.168.0.1 public IP address private IP address (사설아이피주소) (핸드폰도 본질적으로 안테나로 똑같이 연결되어있다!) 사설IP address 192.168.0.0 - 192.168.255.255 : 65536개(수용할수 있는 장치들의 숫자) - 전세계적으로 약속함 NAT (Network Address Tran..