nebula-js-lib
v0.3.2
Published
nebula js library
Downloads
211
Readme
nebula-js
Javascript library to interact with Nebula.
The library is written in Typescript and compiled to ES6, it can be found on npm as nebula-js-lib
.
nebula
Nebula is a high-performance on-demand OLAP engine that allows you to connect many different data sources and provide a query interface to run fast computing like data aggregation. JSON is the main exchange data format between Nebula client and Nebula cluster. For more information, please see Nebula.
A few most popular data sources that Nebula supports
- CSV/TSV data files (S3, GCS, etc.)
- Google Spreadsheet.
- SAAS services like Notion Database, Airtable, etc.
- SQL database like MySQL, Postgres, etc.
- Cloud data warehouse like Snowflake, Databricks, BigQuery etc.
Full services list can be found in Columns.
nebula-js
Nebula JS is the Javascript library to interact with Nebula cluster. It provides the following features:
- Connect to Nebula cluster
- API to ask Nebula to load data from data sources.
- API to connect ask Nebula to run queries.
The service contract is based on the Nebula Protocol. The local nebula.proto is an exact copy of this protocol file, it uses GRPC-js as the transport layer.
nebula server
The library will connect to a nebula server located at address defined by env variable NS_ADDR
.
If the variable is not defined, it will connect to localhost:9190
by default.
build
On the repo root.
- install protobuf compiler:
brew install protobuf
- build the library:
yarn build
NOTE: till the day of writing, protoc is still not supporting ES6 import/export, so we use @protobuf-ts/plugin
plugin for the time being.
NOTE-1: the default option is to convert long type to bigint which is safe. However, we use number instead for legacy reason. We will update this in future.
publish
The nebula-js is published to npm. To publish a new version:
- npm login
- npm version patch
- npm publish