@dataramen/cli 0.0.71-beta.1 → 0.0.71-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@dataramen/server","version":"0.0.95-beta.1","license":"MIT","main":"code/server.js","dependencies":{"@fastify/cors":"^11.0.1","@fastify/static":"^8.2.0","@fastify/cookie":"^11.0.2","dotenv":"^16.5.0","fast-glob":"^3.3.3","fastify":"^5.3.2","mysql2":"^3.14.1","pg":"^8.15.6","sqlite3":"^5.1.7","typeorm":"^0.3.27","bcryptjs":"^3.0.2","jose":"^6.0.12","reflect-metadata":"^0.2.2","qs":"^6.14.0"},"devDependencies":{"fs-extra":"^11.3.0","open":"^10.2.0","commander":"^14.0.2","yocto-spinner":"^1.0.0"}}
1
+ {"name":"@dataramen/server","version":"0.0.95-beta.2","license":"MIT","main":"code/server.js","dependencies":{"@fastify/cors":"^11.0.1","@fastify/static":"^8.2.0","@fastify/cookie":"^11.0.2","dotenv":"^16.5.0","fast-glob":"^3.3.3","fastify":"^5.3.2","mysql2":"^3.14.1","pg":"^8.15.6","sqlite3":"^5.1.7","typeorm":"^0.3.27","bcryptjs":"^3.0.2","jose":"^6.0.12","reflect-metadata":"^0.2.2","qs":"^6.14.0"},"devDependencies":{"fs-extra":"^11.3.0","open":"^10.2.0","commander":"^14.0.2","yocto-spinner":"^1.0.0"}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataramen/cli",
3
- "version": "0.0.71-beta.1",
3
+ "version": "0.0.71-beta.2",
4
4
  "repository": "https://github.com/OleksandrDemian/dataramen.git",
5
5
  "author": "Oleksandr Demian <oleksandrovsky@gmail.com>",
6
6
  "license": "MIT",
package/dist/README.md DELETED
@@ -1,75 +0,0 @@
1
- # 🍜 DataRamen CLI
2
-
3
- Your cozy corner for exploring and working with SQL databases - no query writing required.
4
-
5
- DataRamen CLI lets you launch a powerful, local database exploration app that connects effortlessly to MySQL and PostgreSQL databases. Browse schemas, follow relationships, and insert/update data - all from your browser.
6
-
7
- ## ✨ Features
8
-
9
- - 🔌 **Connect to PostgreSQL & MySQL**
10
- Securely plug in your credentials - you're ready to explore.
11
-
12
- - 🧭 **Visual Schema Explorer**
13
- Instantly browse tables, columns, types, primary/foreign keys, and relationships.
14
-
15
- - 🧙 **No-SQL Querying**
16
- Filter, sort, join, and summarize data using a beautiful, intuitive interface.
17
-
18
- - 🔗 **Follow Relationships Easily**
19
- Click to expand related records.
20
-
21
- - ✏️ **Insert & Update Visually**
22
- Add or modify rows with a visual editor - no SQL errors.
23
-
24
- - 💾 **Save Queries**
25
- Save your favorite views for quick access later.
26
-
27
- ## 🛠️ Installation
28
-
29
- ### 1. Install Node.js
30
-
31
- DataRamen requires Node.js **v22 or above**.
32
- 👉 [Download Node.js](https://nodejs.org/)
33
-
34
- ### 2. Install DataRamen CLI
35
-
36
- Open your terminal and run:
37
-
38
- ```bash
39
- npm i -g @dataramen/cli
40
- ```
41
-
42
- ## 🖥️ Usage
43
-
44
- ### Start the Local Server
45
-
46
- ```bash
47
- dataramen start
48
- ```
49
-
50
- ### Open the App
51
-
52
- Go to `localhost:4466` in your browser. Your local server will connect automatically.
53
-
54
- ### Update the App
55
-
56
- You can update DataRamen CLI using `NPM` install command:
57
-
58
- ```bash
59
- npm i -g @dataramen/cli
60
- ```
61
-
62
- The above command will install latest stable version.
63
-
64
- ## 🔧 Additional CLI Commands
65
-
66
- | Command | Description |
67
- |-------------------|----------------------------------|
68
- | `dataramen start` | Start the local DataRamen server |
69
- | `dataramen stop` | Stop the local server |
70
- | `dataramen open` | Open local webapp |
71
- | `dataramen logs` | Show logs from the running server|
72
-
73
- ## ❤️ Made with love by [Oleksandr Demian](https://github.com/OleksandrDemian)
74
-
75
- Visit [dataramen.xyz](https://dataramen.xyz) for more info.