DevFlow

Installation

Install DevFlow with npx create-devflow (no global install needed), or add it globally with npm/pnpm/yarn/bun. Works with any Node.js >= 18 project.

Requirements

  • Node.js >= 18.0.0
  • A JavaScript/TypeScript project with a package.json (or DevFlow will create one)

No installation required — run directly:

npx create-devflow

This always fetches the latest version.

Global Installation

npm install -g create-devflow

Then use it anywhere:

devflow
# or
create-devflow

Project-Local Installation

If you want to pin the version in your project:

npm install -D create-devflow

Add a script to package.json:

{
  "scripts": {
    "devflow": "devflow"
  }
}

Verify Installation

devflow --version
devflow --help

Package Managers

DevFlow works with all major package managers:

Package ManagerInstall Command
npmnpx create-devflow
pnpmpnpm dlx create-devflow
yarnyarn dlx create-devflow
bunbunx create-devflow

DevFlow auto-detects your package manager from lock files, but you can override it:

devflow --pm pnpm

On this page