all repos — litestore @ 648970bdcb2eb74a0e818349738694cec943c9e3

A minimalist nosql document store.

Merge pull request #71 from ArikRahman/patch-1

Update overview.md
Fabio Cevasco h3rald@h3rald.com
Sat, 06 Jan 2024 16:58:58 +0100
commit

648970bdcb2eb74a0e818349738694cec943c9e3

parent

93f8a5f2b8941470ddec71df451d514a4cb1ff50

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/admin/md/overview.mdsrc/admin/md/overview.md

@@ -21,7 +21,7 @@ Despite being fairly small and self-contained, LiteStore comes with many useful features that are essential for many use cases.

#### Multi-format Documents -LiteStore can be used to store documents in virtually any format, as long as you specify an appropriate content type for them. Textual documents are stored as-is, while binary documents are base64-encoded (not the best thing in the world, but definitely the easiest and most portal option). +LiteStore can be used to store documents in virtually any format, as long as you specify an appropriate content type for them. Textual documents are stored as-is, while binary documents are base64-encoded (not the best thing in the world, but definitely the easiest and most portable option). #### Document Tagging

@@ -41,7 +41,7 @@ Every operation can be performed on the data store using a simple but powerful RESTful HTTP API, perfect for client-side, single-page applications.

#### JWT-based Authorization -LiteStore can be configure validate [JWT](https://jwt.io/) tokens and configure access to specific resources based on specific [OAuth2 scopes](https://oauth.net/2/scope/). +LiteStore can be configured to validate [JWT](https://jwt.io/) tokens and configure access to specific resources based on specific [OAuth2 scopes](https://oauth.net/2/scope/). #### Middleware

@@ -65,4 +65,4 @@ To make serving a single-page application _from LiteStore_ even easier and faster, you can automatically import (and export) the contents of a directory recursively.

#### Directory Mounting and Mirroring -After importing the contents of a directory into a LiteStore data store, you can _mount it_ on LiteStore and mirror all data store changes to the filesystem. Incidentally, that's how most of the LiteStore Admin test app was built [](class:fa-face-smile). +After importing the contents of a directory into a LiteStore data store, you can _mount it_ on LiteStore and mirror all data store changes to the filesystem. Incidentally, that's how most of the LiteStore Admin test app was built [](class:fa-smile-o).