컴퓨터/프로그래밍2015. 6. 2. 22:05

상세 정보 보기

> tsd query {module} --info


히스토리 보기 (업데이트 기록)

> tsd query {module} --history


특정 버전 정보 보기

> tsd query {module} --info
    --commit <sha1>   -c    > GitHub Hash(SHA)로 버전 정보 보기
    --date <range>    -d    > 히스토리의 날짜로 버전 정보 보기
    --semver <range>  -v    > 버전을 지정해서 버전 정보 보기


상세 정보 보기와 함께 설치하기

> tsd query {module} --info --action install
    --overwrite       -o    > 파일이 있을 경우 덮어쓰기
    --resolve         -r    > 종속된 모듈을 포함하기


사용 예>

tsd query stylus --info --action install --overwrite --resolve --save
tsd query express --info --commit 98c163 --action install --overwrite --resolve --save
tsd query node --info --semver "=0.10.0" --action install --overwrite --resolve --save
Posted by jungtae17
컴퓨터/프로그래밍2015. 5. 31. 00:27

 

TypeScript
  : http://www.typescriptlang.org

 

DefinitelyTyped
  : http://definitelytyped.org

 

 

typescript (TypeScript is a language for application scale JavaScript development)
  : https://www.npmjs.com/package/typescript

 

tsd (TypeScript Definition manager for DefinitelyTyped)
  : https://www.npmjs.com/package/tsd

 

Posted by jungtae17