You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+72
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@
6
6
7
7
A TypeScript implementation of json-server with additional features and comprehensive TypeScript types.
8
8
9
+

10
+
9
11
## Features
10
12
11
13
- Full TypeScript support with type definitions
@@ -19,6 +21,7 @@ A TypeScript implementation of json-server with additional features and comprehe
19
21
- Static file serving
20
22
- Custom middleware support
21
23
- Deno compatibility
24
+
-**Beautiful and intuitive CLI interface with color-coded outputs**
22
25
23
26
## Installation
24
27
@@ -281,6 +284,75 @@ server.start().then(() => {
281
284
});
282
285
```
283
286
287
+
## Beautiful CLI Experience
288
+
289
+
One of the standout features of this implementation is the beautifully styled CLI interface, designed to make your development experience more enjoyable and informative.
290
+
291
+
### Server Status Display
292
+
293
+
When you start the server, you'll see a beautiful status banner with:
294
+
295
+
```
296
+
🚀 JSON Server is running
297
+
298
+
http://localhost:3000 - API Root
299
+
http://localhost:3000/db - Full Database
300
+
301
+
Read Only: No
302
+
API Prefix: Enabled
303
+
CORS: Enabled
304
+
305
+
ℹ️ Press Ctrl+C to stop the server
306
+
```
307
+
308
+
### Color-Coded Messages
309
+
310
+
All CLI messages are color-coded for better readability:
0 commit comments