项目作者: simnalamburt

项目描述 :
Flow + Babel = :heart:
高级语言: JavaScript
项目地址: git://github.com/simnalamburt/node-practice.git
创建时间: 2015-12-24T20:58:56Z
项目社区:https://github.com/simnalamburt/node-practice

开源协议:

下载


Flow + Babel = Love

Use javascript in modern and safe way Right Now. Requires node ≥ 5.0.0

  1. npm install
  2. # Run Babel in watch mode
  3. npm start
  4. npm test # Type check
  5. npm run build # Type check + Babel

Wow

  1. // main.js
  2. var hello = (): string => {
  3. return 'Hello, world';
  4. };
  5. export { hello };