Skip to content

Commit

Permalink
fix(docs): Add JavaScript web app frontend guide (#2834)
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl authored Oct 27, 2022
1 parent 8c6f2ef commit 68cf03f
Show file tree
Hide file tree
Showing 20 changed files with 859 additions and 6 deletions.
7 changes: 5 additions & 2 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,12 @@ export default defineConfig({
},
{
text: 'Frontend',
// collapsible: true,
// collapsed: true,
collapsible: true,
items: [
{
text: 'JavaScript',
link: '/guides/frontend/javascript.md'
}
// {
// text: 'Frontend Frameworks',
// link: '/guides/frameworks.md'
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/basics/schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const userSchema = Type.Object(
email: Type.String(),
password: Type.Optional(Type.String()),
githubId: Type.Optional(Type.Number()),
avatar: Type.String()
avatar: Type.Optional(Type.String())
},
{ $id: 'User', additionalProperties: false }
)
Expand Down
367 changes: 367 additions & 0 deletions docs/guides/frontend/javascript.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion docs/public/crow/README.md

This file was deleted.

Binary file removed docs/public/crow/event-filter-diagram.jpg
Binary file not shown.
Binary file removed docs/public/crow/feathers-logo-wide.png
Binary file not shown.
Binary file removed docs/public/crow/key-image-horizontal.png
Binary file not shown.
Binary file removed docs/public/crow/logo-title.jpg
Binary file not shown.
Binary file removed docs/public/crow/profiler-log.jpg
Binary file not shown.
Binary file removed docs/public/crow/profiler-stats.jpg
Binary file not shown.
Binary file removed docs/public/crow/real-time-events-flow.jpg
Binary file not shown.
Binary file removed docs/public/crow/service-diagram-basic.jpg
Binary file not shown.
Binary file removed docs/public/crow/services-data-store.jpg
Binary file not shown.
Binary file removed docs/public/crow/services-external-api.jpg
Binary file not shown.
Binary file removed docs/public/crow/services-external-api.png
Binary file not shown.
Binary file removed docs/public/crow/services-real-time-proxy.jpg
Binary file not shown.
Binary file removed docs/public/crow/services-restful-actions.jpg
Binary file not shown.
Binary file removed docs/public/crow/tiny-feathers-logo.png
Binary file not shown.
Loading

0 comments on commit 68cf03f

Please # to comment.