New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

arch-stream

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arch-stream

Modular stream for domain and data oriented program architecture design.

  • 0.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

ArchStream

Build Status Coverage Status Dependency Status

Modular stream for domain and data oriented program architecture design.

API

typings/local/arch-stream.d.ts

  • ArchStream
  • Proxy
  • Message

Install

$ npm i arch-stream
$ bower install arch-stream

Usage

Modular streams

import ArchStream from 'arch-stream';

const add1 =
  ArchStream<number>()
    .trans(n => ++n)
    .export(),
  add2 =
    ArchStream<number>()
      .import(add1)
      .import(add1)
      .export(),
  add3 =
    ArchStream<number>()
      .import(add1)
      .import(add2)
      .export();

ArchStream<number>()
  .import(add1)
  .import(add2)
  .import(add3)
  .export()
  .read(n => console.log(n))
  .write(0)  // => 6
  .write(9); // => 15

Browser

  • Chrome
  • Firefox
  • IE9+
  • Phantomjs

Keywords

FAQs

Package last updated on 08 Sep 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc