# flowify **Repository Path**: mirrors_WebReflection/flowify ## Basic Information - **Project Name**: flowify - **Description**: The easiest way to introduce flow type annotation through browserify - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flowify The easiest way to introduce flow type annotation through browserify. ```sh npm install --save-dev \ flowify \ babel-plugin-typecheck \ babel-plugin-syntax-flow \ babel-plugin-transform-flow-strip-types ``` ```js // basic grunt example grunt.initConfig({ browserify: { options: { transform: ['flowify', 'hintify', 'babelify'] } } }); ```