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

@kanaries/ml

v1.1.0

Published

Machine learning library for JavaScript and TypeScript with a scikit-learn-style API: classification, regression, clustering, dimensionality reduction, and anomaly detection in the browser and Node.js.

Readme

@kanaries/ml — Machine Learning in JavaScript & TypeScript

npm version npm downloads CI License

@kanaries/ml is a machine learning library for JavaScript and TypeScript with a scikit-learn-style API. Train and run classification, regression, clustering, dimensionality reduction, and anomaly detection models directly in the browser or in Node.js — no Python service required. If you know scikit-learn, you already know most of this library: estimators follow the same fit / predict workflow, naming, and options wherever practical.

Documentation · Interactive ML Tools · Algorithm Playgrounds · API Reference · npm · Issues

Features

  • 50+ estimators across classification, regression, clustering, dimensionality reduction, manifold learning, anomaly detection, and semi-supervised learning
  • scikit-learn-style APIfit, predict, fitPredict, transformers, and metrics that mirror the Python ecosystem
  • Gradient boosting and ensemblesXGBoostClassifier/XGBoostRegressor, GradientBoosting, AdaBoost (multiclass via SAMME), RandomForest, Bagging, and IsolationForest
  • Model selection built inKFold, StratifiedKFold, group-aware splitters, GridSearchCV, RandomizedSearchCV, and crossValScore
  • Sparse text pipelinesCountVectorizer, TfidfTransformer, and TfidfVectorizer feed CSR matrices directly to sparse-aware Naive Bayes models
  • Evaluation metrics — accuracy, precision/recall/F1, confusion matrix, ROC curve, ROC AUC, precision-recall curve, MSE, R², adjusted Rand index
  • Runs anywhere JavaScript runs — browsers, Node.js, and edge runtimes, with Web Worker support via asyncMode
  • TypeScript-first — written in TypeScript with full type definitions shipped
  • Zero runtime dependencies — nothing else gets pulled into your bundle

Try the library without installing anything: use the free browser-based confusion matrix and F1 calculator, logistic regression calculator, or interactive algorithm playgrounds. Explore PCA, KNN, gradient descent, K-Means, decision trees, and Random Forest locally with JavaScript/Python comparison code.

How it compares

@kanaries/ml focuses on classical machine learning — the scikit-learn side of ML — rather than deep learning:

| Library | Focus | Choose it when | | --- | --- | --- | | @kanaries/ml | Classical ML with a scikit-learn-style API | You work with tabular data — classification, regression, clustering, anomaly detection — and want it in JS/TS without a Python backend | | TensorFlow.js | Deep learning, GPU-accelerated tensors | You need neural networks, computer vision, or NLP models in the browser | | ml.js | Collection of standalone numeric/ML packages | You want individual algorithms as separate small packages |

Installation

npm install @kanaries/ml
# or
yarn add @kanaries/ml

Quick Start

import { Neighbors } from '@kanaries/ml';

const trainX = [
    [0.12, 0.2, /* ... */ 0.2],
    [0.21, 0.3, /* ... */ 0.2],
];
const trainY = [0, 1];

const knn = new Neighbors.KNearestNeighbors(3, 'distance', 'euclidean');
knn.fit(trainX, trainY);

const testX = [
    [0.52, 0.72, /* ... */ 0.24],
    [0.11, 0.98, /* ... */ 0.32],
];
const result = knn.predict(testX);
console.log(result);

Python vs JavaScript / TypeScript Examples

If you already know scikit-learn, the fastest way to understand @kanaries/ml is to compare the same workflow side by side.

LogisticRegression

from sklearn.linear_model import LogisticRegression

X = [[0, 0], [1, 1], [1, 0], [0, 1]]
y = [0, 1, 1, 0]

clf = LogisticRegression(max_iter=500, random_state=0)
clf.fit(X, y)
pred = clf.predict([[0.9, 0.8], [0.2, 0.1]])
import { Linear } from '@kanaries/ml';

const X = [[0, 0], [1, 1], [1, 0], [0, 1]];
const y = [0, 1, 1, 0];

const clf = new Linear.LogisticRegression({ learningRate: 0.1, maxIter: 800 });
clf.fit(X, y);
const pred = clf.predict([[0.9, 0.8], [0.2, 0.1]]);

KMeans

from sklearn.cluster import KMeans

X = [[0, 0], [0.2, 0.1], [4, 4], [4.1, 4.2]]

model = KMeans(n_clusters=2, random_state=0, n_init='auto')
labels = model.fit_predict(X)
import { Clusters } from '@kanaries/ml';

const X = [[0, 0], [0.2, 0.1], [4, 4], [4.1, 4.2]];

const model = new Clusters.KMeans(2);
const labels = model.fitPredict(X);

DecisionTreeClassifier

from sklearn.tree import DecisionTreeClassifier

X = [[0, 0], [1, 1], [1, 0], [0, 1]]
y = [0, 1, 1, 0]

clf = DecisionTreeClassifier(max_depth=3, criterion='gini', random_state=0)
clf.fit(X, y)
pred = clf.predict([[0.9, 0.8], [0.1, 0.2]])
import { Tree } from '@kanaries/ml';

const X = [[0, 0], [1, 1], [1, 0], [0, 1]];
const y = [0, 1, 1, 0];

const clf = new Tree.DecisionTreeClassifier({ max_depth: 3, criterion: 'gini' });
clf.fit(X, y);
const pred = clf.predict([[0.9, 0.8], [0.1, 0.2]]);

IsolationForest

from sklearn.ensemble import IsolationForest

X = [[0, 0], [0.1, 0.2], [0.2, 0.1], [8, 8]]

clf = IsolationForest(n_estimators=50, contamination=0.25, random_state=0)
clf.fit(X)
pred = clf.predict(X)
import { Ensemble } from '@kanaries/ml';

const X = [[0, 0], [0.1, 0.2], [0.2, 0.1], [8, 8]];

const clf = new Ensemble.IsolationForest(256, 50, 0.25);
clf.fit(X);
const pred = clf.predict(X);

For side-by-side Python and JavaScript examples across the algorithm docs, see the documentation site.

Supported Algorithms

  • Tree: DecisionTreeClassifier, DecisionTreeRegressor, ExtraTreeClassifier, ExtraTreeRegressor
  • Ensemble: RandomForestClassifier, RandomForestRegressor, ExtraTreesClassifier, ExtraTreesRegressor, GradientBoostingClassifier, GradientBoostingRegressor, XGBoostClassifier, XGBoostRegressor, AdaBoostClassifier, AdaBoostRegressor, BaggingClassifier, BaggingRegressor, IsolationForest
  • Linear Models: LinearRegression, LogisticRegression, PolynomialRegression, Ridge, Lasso, ElasticNet, HuberRegressor, RANSACRegressor, TheilSenRegressor, QuantileRegressor, BayesianRidge, ARDRegression, PoissonRegressor, GammaRegressor, TweedieRegressor
  • Support Vector Machines: SVC, NuSVC (SMO dual solvers, one-vs-one multiclass, linear/rbf/poly/sigmoid kernels), LinearSVC, LinearSVR
  • Neighbors: KNeighborsClassifier (KNearestNeighbors), KNeighborsRegressor, RadiusNeighborsClassifier, RadiusNeighborsRegressor, NearestNeighbors, NearestCentroid, LocalOutlierFactor, BallTree, KDTree
  • Naive Bayes: GaussianNB, MultinomialNB, ComplementNB, BernoulliNB, CategoricalNB
  • Clustering: KMeans, Birch, AffinityPropagation, BisectingKMeans, DBSCAN (DBScan), HDBSCAN (HDBScan), OPTICS, MeanShift
  • Text Feature Extraction: CountVectorizer, TfidfTransformer, TfidfVectorizer, HashingVectorizer, DictVectorizer, FeatureHasher
  • Decomposition: PCA, TruncatedSVD, SparsePCA, KernelPCA, FastICA, NMF, IncrementalPCA, FactorAnalysis, LatentDirichletAllocation
  • Cross Decomposition: PLSRegression, CCA
  • Manifold Learning: TSNE, MDS, SpectralEmbedding, LocallyLinearEmbedding (LLE), Isomap
  • Covariance: EmpiricalCovariance, ShrunkCovariance, LedoitWolf, OAS, GraphicalLasso, MinCovDet, EllipticEnvelope
  • Feature Selection: SelectFromModel, RFE, RFECV, chi2, fClassif, mutualInfoClassif, mutualInfoRegression
  • Semi-Supervised: LabelPropagation, LabelSpreading, SelfTrainingClassifier
  • Multi-Output: MultiOutputClassifier, MultiOutputRegressor, ClassifierChain, RegressorChain
  • Imputation: IterativeImputer
  • Neural Network: BernoulliRBM
  • Metrics: accuracyScore, precisionScore, recallScore, f1Score, precisionRecallFscoreSupport, confusionMatrix, rocCurve, rocAucScore, precisionRecallCurve, meanSquaredError, r2Score, adjustedRandScore
  • Utilities: preprocessing scalers, SplineTransformer, TargetEncoder, MultiLabelBinarizer, permutationImportance, partialDependence, splitters, search/CV helpers, linear algebra helpers and math functions
  • Composition / kernels / projections: TransformedTargetRegressor, KernelRidge, KernelDensity, GaussianRandomProjection, SparseRandomProjection

KNearstNeighbors remains available as a deprecated compatibility alias of KNearestNeighbors.

Advanced Features

Model selection

Tune hyperparameters and validate models the same way you would in scikit-learn:

import { utils, Tree } from '@kanaries/ml';

const search = new utils.ModelSelection.GridSearchCV({
    estimatorFactory: (params) => new Tree.DecisionTreeClassifier(params),
    paramGrid: { max_depth: [2, 3, 5], criterion: ['gini', 'entropy'] },
    cv: 5,
});
search.fit(X, y);
console.log(search.bestParams, search.bestScore);

asyncMode

asyncMode runs a synchronous function in a worker (Web Worker or Node.js worker thread) and returns a Promise, keeping UIs responsive during training:

import { utils } from '@kanaries/ml';

const heavy = (x: number) => x * x;
const runAsync = utils.asyncMode(heavy);

const result = await runAsync(5);

trainTestSplit

utils.Sampling.trainTestSplit splits samples into train/test sets and supports reproducible shuffling with randomState:

import { utils } from '@kanaries/ml';

const X = [[1], [2], [3], [4], [5]];
const y = [0, 0, 1, 1, 1];

const { XTrain, XTest, yTrain, yTest } = utils.Sampling.trainTestSplit(X, y, {
    testSize: 0.4,
    randomState: 42,
});

Documentation

Full guides, algorithm explanations, and API references live at ml.kanaries.net/docs. Every algorithm page includes runnable JavaScript examples with their Python equivalents.

Development

# Install dependencies
yarn

# Run tests
npm run test

# Build the library
yarn build

# Start the example development server
yarn dev

License

MIT