| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- node.js
- 비동기프로그래밍
- STS3
- JavaScript
- vuejs
- programmers12969
- MVVM
- HTTP
- WebView
- URLSession
- ios
- 12969
- STS
- swiftarchitecture
- 스위프트기초
- SWIFT
- Spring
- UIKit
- 스위프트
- NotificationCenter정의
- Vue.js
- Node
- WKWebView
- Vue
- Java
- 스위프트아키텍처
- webviewControll
- webview javascript
- rxswift
- UITabBarController
- Today
- Total
목록JavaScript/Node.js (3)
Monti
🍪 Cookies Cookie 활용 Express Server Cookie Test router.get('/setcookie', function(req,res) { let accessToken = "1234567" let refreshToken = "2345678" res.cookie('auth_token', { 'accesstoken': accessToken, 'refreshtoken': refreshToken }); res.cookie('autoLogin', { name: 'test', password: '1234' }) res.redirect('/getcookie') }) router.get('/getcookie', function(req, res) { res.send(req.cookies) })
이전글 - Node.js 프로젝트 생성 Node.js RestAPI 만들기 - 1.프로젝트 생성 VSCode와 Node.js 설치는 Vue.js 개발환경 구축에서 다루었으니 아래 글을 참고해주시면 됩니다. #2 Vue 프로젝트 생성을 위한 개발환경 구축-1(VSCode, Node.js) vscode 설치 https://code.visualstudio.com/ Vis.. dolmengs.tistory.com RESTAPI는 데이터를 제공해주는것을 목표로 한다. 일단 CRUD(Create, Read, Update, Delete)를 목표로 RESTAPI를 제작하는 것이기 때문에 데이터베이스랑 연동은 필수라고 봐도 된다. Node.js - MariaDB 연동 1) mysql 모듈 설치 - 다음과 같은 명령어를 ..
VSCode와 Node.js 설치는 Vue.js 개발환경 구축에서 다루었으니 아래 글을 참고해주시면 됩니다. #2 Vue 프로젝트 생성을 위한 개발환경 구축-1(VSCode, Node.js) vscode 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud ap.. dolmengs.tistory.com 1. express-generator express-generator란? - 서버의 기본적인 구조와 파일을 자동으로 생성하도록 ..