반응형
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
- 댓글달기
- event
- 자료구조
- HOC
- Vue transition
- Wecode
- State
- storybook
- TypeScript
- nodejs
- MySQL
- ES6
- vuex
- Vue.js
- input
- 자바스크립트
- 리액트
- webpack
- JavaScript
- mapGetters
- Vue
- sass
- 쉬운설명
- scss
- CSS
- react
- v-html
- jsx
- express
- App.vue
Archives
- Today
- Total
목록template engine (1)
익명의 개발노트
3. express와 템플릿 엔진
1. express : npm 모듈중에 하나이며, Node Js 에서 서버 프로그래밍에 필요한 기능을 훨씬더 편하게 해주는 기능이 있다. 1) 일반적인 nodeJS 에서 서버 여는 방법. const http = require('http'); const hostName = '127.0.0.1';const port = 80; http.createServer((req, res) => { res.writeHead(200,{'Content-Type' : 'text/plain'}); res.end('Welcome');}).listen(port, hostName,()=>{ console.log(`Server running at http://${hostName}:${port}/`);}); 2) Express에서 서버를..
프로그래밍/NodeJS
2019. 3. 24. 16:10