Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 4219339

Browse files
committed
wip
1 parent 2bf6cb9 commit 4219339

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

Diff for: .github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish docs
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [master]
66
# trigger deployment manually
77
workflow_dispatch:
88

Diff for: docs/.vuepress/config.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default defineUserConfig<DefaultThemeOptions>({
3535
},
3636
'/guide/usage.md',
3737
'/guide/testing.md',
38+
'/guide/implementations.md',
3839
],
3940
},
4041
{
@@ -61,8 +62,8 @@ export default defineUserConfig<DefaultThemeOptions>({
6162
link: '/guide/testing.md'
6263
},
6364
{
64-
text: 'Other libraries',
65-
link: '/guide/another_libraries.md'
65+
text: 'Implementations',
66+
link: '/guide/implementations.md'
6667
},
6768
]
6869
},

Diff for: docs/guide/another_libraries.md renamed to docs/guide/implementations.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Usage with another libraries
1+
# Implementations
22

33
To complement this package functionality you'll want to add one of these packages we described here.
44

@@ -26,4 +26,11 @@ composer require skorelabs/laravel-query-builder
2626
```
2727

2828
**Repository:** https://github.com/skore/laravel-query-builder
29-
**Documentation:** https://spatie.be/docs/laravel-query-builder/v3/introduction
29+
**Documentation:** https://spatie.be/docs/laravel-query-builder/v3/introduction
30+
31+
## What about the frontend?
32+
33+
So many of you will ask this same question. The answer is simple as JSON:API is a common protocol, you could do your own implementation or use one of these:
34+
35+
- JavaScript browser & server (NodeJS / SSR-capable): https://github.com/olosegres/jsona
36+
- Check any other libraries in: https://jsonapi.org/implementations/

0 commit comments

Comments
 (0)