Skip to content

Commit 80f2b75

Browse files
committed
Publish v0.4.7
1 parent b972718 commit 80f2b75

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# hyperparam
1+
# Hyperparam CLI
22

33
[![npm](https://img.shields.io/npm/v/hyperparam)](https://www.npmjs.com/package/hyperparam)
44
[![workflow status](https://github.com/hyparam/hyperparam-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/hyparam/hyperparam-cli/actions)
55
[![mit license](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6-
![coverage](https://img.shields.io/badge/Coverage-60-darkred)
6+
![coverage](https://img.shields.io/badge/Coverage-49-darkred)
77

8-
This is the hyperparam cli tool.
8+
[Hyperparam](https://hyperparam.app) is a tool for exploring and analyzing large datasets in the browser.
99

10-
The hyperparam cli tool is for viewing arbitrarily large datasets in the browser.
10+
The Hyperparam CLI is currently only for development and testing purposes. You should probably just use [hyperparam.app](https://hyperparam.app).
1111

1212
## Viewer
1313

14-
To open a file browser in your current local directory run:
14+
Use the Hyperparam CLI to open a file browser in your current local directory:
1515

1616
```sh
1717
npx hyperparam
1818
```
1919

20-
You can also pass a specific file, folder, or url:
20+
You can also open a specific file, folder, or url:
2121

2222
```sh
2323
npx hyperparam example.parquet
@@ -27,15 +27,15 @@ npx hyperparam https://hyperparam-public.s3.amazonaws.com/bunnies.parquet
2727

2828
## Chat
2929

30-
To start a chat with hyperparam:
30+
To start a CLI chat with Hyperparam:
3131

3232
```sh
3333
npx hyperparam chat
3434
```
3535

3636
## Installation
3737

38-
Install for all users:
38+
Install Hyperparam CLI globally:
3939

4040
```sh
4141
sudo npm i -g hyperparam
@@ -47,7 +47,7 @@ Now you can just run:
4747
hyperparam
4848
```
4949

50-
or:
50+
or simply:
5151

5252
```sh
5353
hyp
@@ -62,26 +62,26 @@ npm i
6262
npm run dev
6363
```
6464

65-
The application will be rebuild automatically when you make changes, and the browser will refresh.
65+
The application will rebuild automatically when you make changes, and the browser will refresh.
6666

6767
### Library and application
6868

6969
Hyperparam is an application that relies on node.js scripts in the `bin/` directory and serves the static web application built in the `dist/` directory.
7070

71-
The `hyperparam` package also includes a library that can be used in other applications. The library is in the `lib/` directory. For example:
71+
The `hyperparam` package also includes a library of components that can be used in other applications. The library is in the `lib/` directory. For example:
7272

7373
```js
74-
import { asyncBufferFrom, AsyncBufferFrom, parquetDataFrame } from "hyperparam";
74+
import { asyncBufferFrom, AsyncBufferFrom, parquetDataFrame } from 'hyperparam'
7575
```
7676

7777
If you encounter any issues with the web worker, you might have to configure your bundler. For example, in Vite, you can use the following configuration:
7878

7979
```js
80-
import { defineConfig } from "vite";
80+
import { defineConfig } from 'vite'
8181
export default defineConfig({
8282
...
8383
optimizeDeps: {
84-
exclude: ["hyperparam"],
84+
exclude: ['hyperparam'],
8585
},
86-
});
86+
})
8787
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperparam",
3-
"version": "0.4.6",
3+
"version": "0.4.7",
44
"description": "Hyperparam CLI",
55
"author": "Hyperparam",
66
"homepage": "https://hyperparam.app",

0 commit comments

Comments
 (0)