Noderize

Noderize

  • Docs
  • GitHub

›Features

Get Started

  • Introduction
  • Create
  • Scripts
  • Examples

Configuration

  • Index
  • Noderize
  • Prettier
  • Jest

Features

  • Index
  • Modern JavaScript
  • Flow
  • TypeScript
  • Code Formatting
  • Testing
  • Linting

Guides

  • Index
  • Migrate
  • Publishing
  • Heroku
  • Firebase Cloud Functions
  • Google Cloud Functions

Tutorials

  • Index
  • Express
  • CLI

Feature: Flow

Flow is a static type checker that adds types to JavaScript.

Flow is built-in to Noderize. You simply have to add the flow-bin command to your project to start using it:

yarn add -D flow-bin
# or
npm install -D flow-bin

Then add a scripts.flow to package.json set to flow (optional if using Yarn, but nonetheless recommended):

"scripts": {
    "...": "...",
    "flow": "flow"
}

Then initialize Flow with:

yarn flow init
# or
npm run flow init

You may now start using Flow!

← Feature: Modern JavaScriptFeature: TypeScript →
Noderize
Docs
Getting StartedConfigurationFeaturesGuidesTutorials
More
BlogGitHubStar
Copyright © 2018 Charles Crete.