npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lunchflow/actual-flow

v0.0.15

Published

Import transactions from Lunch Flow to Actual Budget with terminal UI.

Readme

About Lunch Flow

Lunch Flow is a tool that allows you to connect your banks globally to the tools you love. We currently support multiple open banking providers (GoCardless, Finicity, MX, Finverse, and more ...).

Demo

Demo

Features

  • 🔗 Easy Setup: Simple configuration process for both Lunch Flow and Actual Budget connections
  • 📋 Account Mapping: Interactive terminal UI to map Lunch Flow accounts to Actual Budget accounts
  • 📊 Transaction Import: Import transactions with proper mapping and deduplication
  • 📅 Sync Start Dates: Configure per-account sync start dates to control import scope
  • 🔍 Connection Testing: Test and verify connections to both services
  • 📱 Terminal UI: Beautiful, interactive command-line interface
  • 🚀 Direct Import Command: Run imports directly from command line for automation
  • 🔄 Deduplication: Prevents importing duplicate transactions

Installation

A simple command to install!

npx @lunchflow/actual-flow

or using pnpm

pnpm dlx @lunchflow/actual-flow

Configuration

The tool will guide you through the initial setup process:

  1. Lunch Flow API Key: Enter your Lunch Flow API key
  2. Lunch Flow Base URL: Enter the API base URL (default: https://api.lunchflow.com)
  3. Actual Budget Server URL: Enter your Actual Budget server URL (default: http://localhost:5007)
  4. Actual Budget Budget Sync ID: Enter your budget sync ID
  5. Actual Budget Password: Enter password if required

Configuration is saved to config.json in the project directory.

Usage

Command Line Interface

The tool supports both interactive and non-interactive modes:

# Interactive mode (default)
actual-flow

# Direct import (non-interactive)
actual-flow import

# Show help
actual-flow help

Main Menu (Interactive Mode)

The tool provides an interactive menu with the following options:

  • 🔗 Test connections: Verify connections to both Lunch Flow and Actual Budget
  • 📋 List available budgets: Show all budgets available on your Actual Budget server
  • 📋 Configure account mappings: Map Lunch Flow accounts to Actual Budget accounts
  • 📊 Show current mappings: Display currently configured account mappings
  • 📥 Import transactions: Import transactions for a selected date range
  • ⚙️ Reconfigure credentials: Update API credentials
  • ❌ Exit: Exit the application

Account Mapping

When configuring account mappings, you'll see:

  1. All available Lunch Flow accounts
  2. All available Actual Budget accounts
  3. Interactive selection to map each Lunch Flow account to an Actual Budget account
  4. Optional sync start date for each mapping (YYYY-MM-DD format)
  5. Option to skip accounts that don't need mapping

Sync Start Dates

You can configure a sync start date for each account mapping to control which transactions are imported:

  • Only transactions on or after the specified date will be imported
  • Leave empty to import all available transactions
  • Useful for limiting historical data or starting fresh with specific accounts

Transaction Import

Interactive Mode

  1. Review a preview of transactions to be imported
  2. Confirm the import
  3. Monitor progress with real-time feedback
  4. Automatic deduplication prevents importing existing transactions

Non-Interactive Mode (actual-flow import)

  1. Automatically imports transactions without confirmation prompts
  2. Perfect for automation, cron jobs, or CI/CD pipelines
  3. Shows transaction preview and processing summary
  4. Respects configured sync start dates for each account

Automation Examples

Cron Job

# Run import every day at 2 AM
0 2 * * * npx @lunchflow/actual-flow import

Made with ❤️ for the Actual Budget community