05-16 03:39
Notice
Recent Posts
Recent Comments
관리 메뉴

Scientific Computing & Data Science

[WebApp / Express] 간단한 Node Module 만들기 본문

Programming/Web App

[WebApp / Express] 간단한 Node Module 만들기

cinema4dr12 2015. 10. 27. 00:07

이번 글에서는 NodeJS의 Express Framework에 대하여 간단한 Node Module을 작성하는 방법을 알아보도록 하자.

방법 1 - 각 Method를 개별적으로 Export

{EXPRESS_APP_PATH}/routes/mymod.js


{EXPRESS_APP_PATH}/routes/test.js


{EXPRESS_APP_PATH}/routes/app.js

Part 2 - JSON Format으로 Export

{EXPRESS_APP_PATH}/routes/mymod2.js


{EXPRESS_APP_PATH}/routes/test.js


{EXPRESS_APP_PATH}/routes/app.js


Comments