Skip to content

Commit ef01502

Browse files
committed
Add support for json5 format
1 parent 5e64cd1 commit ef01502

File tree

7 files changed

+79
-3
lines changed

7 files changed

+79
-3
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ npm install json-server
1212

1313
Create a `db.json` file or run `json-server db.json` to create one with some default resources
1414

15+
> [!TIP]
16+
> You can also use [json5](https://json5.org/) format by creating a `db.json5` instead
17+
1518
```json
1619
{
1720
"posts": [
@@ -27,6 +30,11 @@ Create a `db.json` file or run `json-server db.json` to create one with some def
2730

2831
```shell
2932
json-server db.json
33+
curl -H "Accept: application/json" -X GET http://localhost:3000/posts/1
34+
{
35+
"id": "1",
36+
"title": "a title"
37+
}
3038
```
3139

3240
Run `json-server --help` for a list of options

fixtures/db.json5

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
posts: [
3+
{
4+
id: '1',
5+
title: 'a title',
6+
},
7+
{
8+
id: '2',
9+
title: 'another title',
10+
},
11+
],
12+
comments: [
13+
{
14+
id: '1',
15+
text: 'a comment about post 1',
16+
postId: '1',
17+
},
18+
{
19+
id: '2',
20+
text: 'another comment about post 1',
21+
postId: '1',
22+
},
23+
],
24+
}

package-lock.json

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"dot-prop": "^8.0.2",
4444
"eta": "^3.1.1",
4545
"inflection": "^3.0.0",
46+
"json5": "^2.2.3",
4647
"lowdb": "^6.1.1",
4748
"milliparsec": "^2.3.0",
4849
"sirv": "^2.0.3",

src/JSON5File.ts

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { PathLike } from 'fs'
2+
import JSON5 from 'json5'
3+
import { Adapter } from 'lowdb'
4+
import { TextFile } from 'lowdb/node'
5+
6+
export class JSON5File<T> implements Adapter<T> {
7+
#adapter: TextFile
8+
9+
constructor(filename: PathLike) {
10+
this.#adapter = new TextFile(filename)
11+
}
12+
13+
async read(): Promise<T | null> {
14+
const data = await this.#adapter.read()
15+
if (data === null) {
16+
return null
17+
} else {
18+
return JSON5.parse(data)
19+
}
20+
}
21+
22+
write(obj: T): Promise<void> {
23+
return this.#adapter.write(JSON5.stringify(obj, null, 2))
24+
}
25+
}

src/observer.ts src/Observer.ts

File renamed without changes.

src/bin.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env node
22
import { readFileSync } from 'node:fs'
3-
import { join } from 'node:path'
3+
import { extname, join } from 'node:path'
44
import { parseArgs } from 'node:util'
55

66
import { watch } from 'chokidar'
@@ -9,7 +9,8 @@ import { JSONFile } from 'lowdb/node'
99
import { PackageJson } from 'type-fest'
1010

1111
import { createApp } from './app.js'
12-
import { Observer } from './observer.js'
12+
import { JSON5File } from './JSON5File.js'
13+
import { Observer } from './Observer.js'
1314
import { Data } from './service.js'
1415

1516
// Parse args
@@ -63,7 +64,12 @@ const port = parseInt(values.port ?? process.env['PORT'] ?? '3000')
6364
const host = values.host ?? process.env['HOST'] ?? 'localhost'
6465

6566
// Set up database
66-
const adapter = new JSONFile<Data>(file)
67+
let adapter: JSONFile<Data> | JSON5File<Data>
68+
if (extname(file) === '.json5') {
69+
adapter = new JSON5File<Data>(file)
70+
} else {
71+
adapter = new JSONFile<Data>(file)
72+
}
6773
const observer = new Observer(adapter)
6874

6975
const db = new Low<Data>(observer, {})

0 commit comments

Comments
 (0)