NodeJs
-
-
Udp data 주고 받기 ExNodeJs 2022. 11. 25. 12:48
import dgram from 'node:dgram'; //https://nodejs.org/api/dgram.html const server = dgram.createSocket('udp4'); server.on('error', (err) => { console.log(`server error:\n${err.stack}`); server.close(); }); server.on('message', (msg, rinfo) => { console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); }); server.on('listening', () => { const address = server.address(); console.log(`s..
-
Npm init package.json 생성NodeJs 2022. 11. 23. 21:39
명령어 npm init npm init -y 명령어 실행 화면 Ex (프로젝트 정보 입력 or 생략 가능) C:\t2>npm init This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults. See `npm help init` for definitive documentation on these fields and exactly what they do. Use `npm install ` afterwards to install a package and save it as a dependency in the packa..
-
Nodejs NpmNodeJs 2022. 11. 23. 21:34
npm은 Node Package Manager 또는 Node Package Modules라고도 한다. npm은 node.js에 사용되는 오픈소스 라이브러리 모듈을 모아둔 집합 저장소이다. npm은 개발자들이 Node.js 기반의 JavaScript로 개발된 오픈소스 라이브러리를 올려놓은 곳이다. typescript, jQuery, gulp, webpack 등의 모듈들을 npm명령어를 통해 쉽게 다운받고 쓸 수가 있다. NodeJs 설치 npm 버전 확인 npm -v 프로젝트 설정 Npm init package.json 생성 모듈 설치 npm install 명령어