Jelle
Jelle
In the templates `this` is required, perhaps a cleaner solution is to remove the `this` from your templates. This could been done for example by updating the `expressionToJS` function. See...
First of all great library! After wanting to port some data from a mongodb database I stubbled upon that only 'integers' are valid primary keys. It would nice to see...
This does two things: - Enable / disable a checkbox when clicking on the label - Focus the text input when clicked on the label
Would be nice to toggle the checkbox when clicking on the label to have a bigger hit area.
**Description** > Describe your changes in detail **Related Issue** > - If suggesting a new feature or change, please discuss it in an issue first. > - If fixing a...
Cli command can't find express. Perhaps this should be added to the docs to also install `express` globally when using the global cli command `json-server-auth`. ```sh > npx json-server-auth db.json...
When setting a different id key with: ``` router.db._.id = '_id' ``` Or with: ``` NODE_OPTIONS=--stack-trace-limit=100 json-server storage/db.json --port 5000 --watch --id _id ``` If you do a DELETE request...
Currently the JSONFile adapter of `lowdb` uses `JSON.stringify(obj, null, 2)` which works nicely in most situations. However most 'production' situations would strip away the whitespace for performance. Therefor to have...
The images on this page: https://picsum.photos/images are being sorted in an unnatural way like: 0, 1, 10, 100, 1000, 1001 Probably nicer to sort it 0,1,2,3,..
First of all really nice library, much faster and easier to use than the other globe libraries 👍 **Describe the bug** The environment parameters are being reset after sometime when...