My Tech Blog

Node Posts

4 posts in this category

[NodeJS] express-generator

: Express-generator라는 패키지를 통해서 프레임워크에 필요한 pakage.json과 기본 구조를 잡을 수 있는 패키지 이다. install 및 express 프로젝트 만들기

Node,Js 설치(mac)

설치 터미널에 brew install node 를 입력하면 Node.js 가 설치됩니다. 유용한 npm 모듈 nodemon 설치방법 $ npm install -g nodemon...

Node.js 에 MySQL 연결하기

MySQL 모듈을 설치합니다. $ npm install mysql DB연결하기 mysql 설치후 mysql 모듈을 설치합니다. ```javascript const mysql = require(‘mysql’); const connection...