Babel없이 Flow 사용
Flow에는 Comment Types라고 불리는 기능이 있어 코멘트 기반의 신택스가 준비되어 있다.
Comment Types | Flow
// @flow
function sum(a /*: number */ , b /*: number */) {
return a + b
}
sum('hello', 2)
기본적으로는
/*: 型 */
라고 쓸 뿐.형체크에 의해 뜻밖의 버그를 막고, ESDoc나 JSDoc등으로 코멘트를 붙이는 것보다 부담스럽다.
또, 에디터의 지원에 의해, 보완되는 것도 기쁘다.
이 코멘트 형식의 Flow를 채용하고 있는 라이브러리를 몇 개 들여 둔다.
ast-pretty-print/index.js at master · babel-utils/ast-pretty-print
babel-flow-scope/index.js at master · babel-utils/babel-flow-scope
thejameskyle/read-file-async: Typed async readFile function
Reference
이 문제에 관하여(Babel없이 Flow 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akameco/items/543d318dba0e5380db9a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)