NodeJs28 Find and includes const arr = ['node.js','one'] const result = arr.find(key -> key === 1) const response = arr.includes('node.js') 2020. 1. 10. every -- 배열에 있는 모든 데이터가 조건을 만족하는지 검증 할때 every 메서드가 유용함 const arr = [2,3,4] const isBigger = arr.every(key => key >2) //output -> true 2020. 1. 10. module.export module.export 로 함수/클래스 등을 export -- sample.js function edit(){} function write(){} module.exports = { edit, //or edit:edit write //or write:write } -------------- -- sampleClass.js class update{} module.exports = update ------- -- sampleDirectExport.js module.exports = { id:'', token:'', fn:() => { console.log('this is a function') } } 2020. 1. 10. Nodejs dev env setup nodejs install nodejs 공식 사이트의 LTS 버전을 설치 하도록 한다. https://nodejs.org/ko/ 설치후 패키지 관리도구인 npm, npx 을 별도의 설치 없이 사용 가능. NPM 을 사용하여 nodejs 프로젝트 설정 - 작업 디렉터리 생성 mkdir node_project - 작업 디렉터리에서 패키지 초기화 npm init - 패키지 설치 npm install or i - 패키지 설치시 패키지 목록 저장하기 npm install --save-dev - 설치된 패키지 제거 npm uninstall - 전역 으로 설치하기 npm install -g - 전역으로 설치된 패키지 제거 npm uninstall -g NPX 사용 - 설치하지 않고 단순 실행 목적일 경우 사용 한다... 2020. 1. 10. 이전 1 2 3 4 5 다음