일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅데이타
- nodeJS
- Statistics
- node.js
- 우리들교회
- 김양재 목사
- 확률
- WebGL
- 김양재 목사님
- Big Data
- 빅데이터
- 인공지능
- 딥러닝
- Machine Learning
- 주일설교
- 몽고디비
- Artificial Intelligence
- No SQL
- R
- Deep learning
- openCV
- probability
- c++
- data science
- 빅 데이타
- 데이터 과학
- 빅 데이터
- 김양재
- 통계
- MongoDB
Archives
- Today
- Total
목록미들웨어 (1)
Scientific Computing & Data Science
[WebApp / Express] 간단한 Node Module 만들기
이번 글에서는 NodeJS의 Express Framework에 대하여 간단한 Node Module을 작성하는 방법을 알아보도록 하자.방법 1 - 각 Method를 개별적으로 Export{EXPRESS_APP_PATH}/routes/mymod.js var name = exports.name = 'GChoi'; var secret = 'gchoi'; exports.lower = function(input) { return input.toLowerCase(); }; exports.upper = function(input) { return input.toUpperCase(); }; exports.get_name = function() { return name; }; exports.get_secret = func..
Programming/Web App
2015. 10. 27. 00:07