New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

pipeljs

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pipeljs

A Promise-like Reactive Stream Library

latest
Source
npmnpm
Version
0.3.40
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

Pipel

pipel-vue logo

A Promise-like Reactive Stream 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 pipeljs

# yarn
yarn add pipeljs

# pnpm
pnpm add pipeljs

Quick Start

import { $ } from 'pipeljs'

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

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

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

Keywords

pipeljs

FAQs

Package last updated on 14 Oct 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