개발 공부/typescript2 람다 라이브러리에 대해 알아보자. 람다 라이브러리란? 우리가 함수형 프로그래밍을 하기 위해 필요한 유틸리티 함수들을 모아둔 라이브러리다. 이러한 유틸리티 라이브러리에는 람다 뿐만 아니라 언더스코어, 로대시 같은 것들도 있다. 람다 라이브러리는 기본적으로 javascript를 위해 만들어졌지만 나는 typescript를 공부하고 있으므로 typescript에 설치 및 import npm install ramda npm install @types/ramda로 설치를 하고 사용할 수 있다. 아래 @types/ramda는 typescript를 위한 패키지이다. import * as R from 'ramda로 import하여 사용하며 이런 식으로 ramda의 사용하지 않는 함수들도 가지고 오면 코드의 크기가 커지기 때문에 마지막에 impo.. 2021. 9. 28. typescript 파일 실행시키기. 적당히 typescript 파일을 하나 만들자. // study.ts const arrow2 = (a: number, b: number) => { console.log(a); console.log(b); }; arrow2(1, 2); npm install -g @types/node typescript ts-node를 통해 node와 typescript, ts-node를 받는다. ts-node study.ts로 실행시킨다. tsc study.ts를 통해 js로 컴파일한 후 node study.js로 실행 시키는 방법도 있다. 2021. 9. 12. 이전 1 다음