A stream that detects tabular data (spreadsheets, dsv or json) and yields objects
Detect the dominant newline character of a string
Improved typeof detection for node.js and the browser.
Detect Node.JS (as opposite to browser environment). ESM modification
Node.js module to detect the C standard library (libc) implementation family and version
Node.js implementation of port detector
Detects if a file exists and returns the resolved filepath.
Table format APIs for JSON, CSV, etc...
detect available port
Detect the indentation of code
Tabular data chunked into scrollable panes
Detect which package manager you're using (yarn or npm)
Unpack a browser type and version from the useragent string
Classify GPU's based on their benchmark score in order to provide an adaptive experience.
A JavaScript parser built from the Hermes engine
Detect device type and render your component according to it
Package manager detector
Schema-related utilities for loaders.gl...
Provides nested objects from tabular data.
Library will help you to detect if the locale is right-to-left language.
Create beautiful ASCII tables and grids with customizable borders, padding, and alignment. Supports Unicode, colors, and ANSI escape codes.
Detect if a device is mouse only, touch only, or hybrid
Detect if the browser supports passive events
Tabular grid for react-native
Simple yet powerful library for importing tabular data from CSV, HTML, XLS and XLSX files, including support for auto-detecting column order, parsing/validating cell data, aggregating errors, etc.
This library performs diffs of CSV data, or any table-like source. Unlike a standard diff that compares line by line, and is sensitive to the ordering of records, CSV-Diff identifies common lines by key field(s), and then compares the contents of the fields in each line. Data may be supplied in the form of CSV files, or as an array of arrays. The diff process provides a fine level of control over what to diff, and can optionally ignore certain types of changes (e.g. changes in position). CSV-Diff is particularly well suited to data in parent-child format. Parent- child data does not lend itself well to standard text diffs, as small changes in the organisation of the tree at an upper level can lead to big movements in the position of descendant records. By instead matching records by key, CSV-Diff avoids this issue, while still being able to detect changes in sibling order. This gem implements the core diff algorithm, and handles the loading and diffing of CSV files (or Arrays of Arrays). It also supports converting data in XML format into tabular form, so that it can then be processed like any other CSV or table-like source. It returns a CSVDiff object containing the details of differences in object form. This is useful for projects that need diff capability, but want to handle the reporting or actioning of differences themselves. For a pre-built diff reporting capability, see the csv-diff-report gem, which provides a command-line tool for generating diff reports in HTML, Excel, or text formats.