George Mihailov
George Mihailov
> In addition to the result true / false, is it possible to get the reason (for example false because a not equals to 0 as error message or something),...
NPM v8+ https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides ```JSON { "overrides": { "sortablejs": "~1.15" } } ```
@Stevenic check out [Origin Private File System](https://developer.mozilla.org/en-US/docs/Web/API/File_System_API/Origin_private_file_system). This could bring browser + permanent storage. I guess you need to scan and traverse all the files and folder structure is just...
Use the `target` property to select the container with draggable items. ```Vue {{ item.name }} ``` https://vue-draggable-plus.pages.dev/en/demo/target-container/
I'm new here. Evaluating local database options. Maybe something similar to [mongo's writeConcern](https://www.mongodb.com/docs/manual/reference/write-concern/) concept? ```JS // Guarantee write persistence before returning postId const postId = await posts.insert({ title: 'Foo', text:...
Related to: https://github.com/taskforcesh/bullmq/issues/831
A second though here: maybe wildcard is not the best design. It is intuitive, but adds special asterisk character that can lead to unintended bugs. I think it is better...
@manast what do you think about such design in general? I tend to think that it is not the best choice and instead it should be something like example below...