Socket
Book a DemoInstallSign in
Socket

fluth

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluth

A Promise-like Reactive Stream Library

latest
Source
npmnpm
Version
0.3.34
Version published
Weekly downloads
6
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Fluth

fluth-vue logo

A Promise-like asynchronous flow control library

codecov MIT License npm version npm downloads GitHub stars TypeScript Ask DeepWiki

🚀 Features

  • 🤞 Easy to Use: Promise-like stream processing with chainable APIs
  • 🔄 Reactive Programming: Observable-based data streams
  • ⚡ Async Control: Powerful Promise-like async flow control
  • 🛠️ Rich Operators: A wide range of transformation and combination operators
  • 🔌 Plugin System: Extensible plugin mechanism for debugging and logging
  • 💾 Immutable Operations: Immutable data updates powered by limu
  • 🎯 TypeScript: Fully typed for a smooth developer experience

📦 Installation

# npm
npm install fluth

# yarn
yarn add fluth

# pnpm
pnpm add fluth

Quick Start

import { $ } from 'fluth'

// Create a stream
const stream$ = $()

// Listen for changes
stream$.then((value) => {
  console.log('received:', value)
})

// Emit value
stream$.next('Hello Fluth!')

Keywords

fluth

FAQs

Package last updated on 13 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts