0.7.1 ā€¢ Published 4 years ago

bottlenose v0.7.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

CircleCI CircleCI License: MIT

Description

šŸ¬ RxJS offers a great toolkit for reactive functional programming. But if you use RxJS in a larger software application, you may often find yourself handcrafting your own functions to handle common workflows and wrap them in RxJS observables (like streaming file data or connecting to a WebSocket). Bottlenose is a collection of npm packages that provide industrial-strength RxJS operators and utilities for handling common data streams (filesystems, CSV, AWS S3, Websockets, socket.io), analyzing data (statistics, NLP) and implementing machine learning models (like SVM).

Features:

  • Embraces reactive functional programming. (All packages are built as wrappers on top of the RxJS.)
  • Built for software makers by software makers. (Use cases include startups, software enterprises, dev shops, full stack developers and other product creators.)
  • Industrial strength: packages are reliable, lightweight, secure and performant
  • Full stack: most modules are universal (browser, server, mobile, desktop)
  • Expressive, concise, readable and declarative syntax (built on RxJS pipeable operators).
  • Stream-based and real-time: Allows most data analysis tasks to be accomplished with stream-processing instead of memory-intensive batch processing.

You can use Bottlenose to...

  • Integrate data sources (as streams) into applications
  • Perform exploratory data analysis and data munging
  • Build data-intensive products and performant data pipelines
  • Write applications that are expressive, readable, easy to reason about and easy to test
  • Train machine learning models (static or in real-time applications)

Bottlenose is a young project started in late 2019 so it has a limited but fast-growing feature set. It is maintained by an opensource community. It is also actively used and improved by a healthcare AI startup called Buccaneer, which is adding new modules frequently as their team develops them for enterprise SaaS data pipelines.

Documentation & Guides

Documentation

Installation

Each Bottlenose module is namespaced under @bottlenose and installed separately. See the docs for a list of all currently available modules. For example, this would install Bottlenose's statistics module:

npm i --save @bottlenose/rxstats

Or

yarn add @bottlenose/rxstats

Basic Usage

For a full list of operators and modules, see the documentation.

Easily generate input streams

Bottlenose has modules for handling common data input sources like CSV, AWS S3, local file system and websockets. For example, this would parse CSV input:

import { from } from 'rxjs';
import { map  } from 'rxjs/operators';
import { parse } from '@bottlenose/rxcsv';

// Create a stream of raw CSV data
const csvString$ = from([
  'name,systolicBp,dialostilicBp,message\n', 
  'Blackbeard,140,91,Yarr\nCrunch,120,', 
  ',180,Arr\nSparrow,110,70,Savvy\n',
]);

// Stream the CSV data into an RxJS Subject
const row$ = csvString$.pipe(parse());
row$.subscribe();
// {name: "Blackbeard", systolicBp: 140, diastolicBp: 91, isAngry: true},
// {name: "Crunch", systolicBp: 120, diastolicBp: 80, isAngry: false},
// {name: "Sparrow", systolicBp: 110, diastolicBp: 70, isAngry: false},

Analyze data reactively

Bottlenose also has modules for common data analysis tasks (like descriptive statistics and NLP). For example, this would calculate the mean on the csv stream from the previous example:

import { map } from 'rxjs/operators';
import { mean } from '@bottlenose/rxstats';

// using the row$ csv from the prior example
const mean$ = row$.pipe(
  map(row => row.systolicBp), 
  mean() // calculate the mean on one of the columns
);
mean$.subscribe(console.log);
// 140
// 130
// 123.33333333333333

Train machine learning models reactively

Bottlenose is also adding modules for common machine learning algorithms (like SGD). For example, this would train an SGD classifier:

import {classifier} from '@bottlenose/rxsgd';

// train an SGD model on the example above
const sgd$ = row$.pipe(
  map(row => [[row.systolicBp, row.diastolicBp], row.isAngry]),
  classifier()
);
// train the classifier and emit it its new trained parameters each time 
// a new item is ingested
sgd$.subscribe();

Community

If you share the goal of creating amazing data science tools for the Javascript community, then here are some ways to help:

0.7.1

4 years ago

1.0.59

4 years ago

1.0.57

4 years ago

1.0.50

4 years ago

1.0.49

4 years ago

1.0.48

4 years ago

1.0.25

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.16

4 years ago

1.0.12

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

0.1.14

4 years ago

0.1.13

4 years ago

0.1.9

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.0.57

4 years ago

0.0.56

4 years ago

0.0.55

4 years ago

0.0.54

4 years ago

0.0.53

4 years ago

0.0.52

4 years ago

0.0.51

4 years ago

0.0.50

4 years ago

0.0.48

4 years ago

0.0.47

4 years ago

0.0.46

4 years ago

0.0.45

4 years ago

0.0.44

4 years ago

0.0.43

4 years ago

0.0.42

4 years ago

0.0.41

4 years ago

0.0.40

4 years ago

0.0.39

4 years ago

0.0.38

4 years ago

0.0.37

4 years ago

0.0.36

4 years ago

0.0.35

4 years ago

0.0.34

4 years ago

0.0.33

4 years ago

0.0.32

4 years ago

0.0.31

4 years ago

0.0.30

4 years ago

0.0.29

4 years ago

0.0.28

4 years ago

0.0.27

4 years ago

0.0.26

4 years ago

0.0.25

4 years ago

0.0.24

4 years ago

0.0.23

4 years ago

0.0.22

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.19

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.16

4 years ago

0.0.15

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago