Mahsa Shadi

Results 17 issues of Mahsa Shadi

Why `size-of` logs two different size in Chrome and Firefox, for a complicated object, by using `console.log()`. ```js console.log('mywin size is:', sizeof(win)); // Result: mywin size is: 22923784 //logs in...

I print `win` object size in console by your `size-of` module, and also attach it to window, to show it in chrome devTools. ```js console.log('mywin size is:', sizeof(win)); //shows 22M...

Does this module support functions?

Hi. How can we extend osjs-search-engine? Imagine we have a search engine like `Elasticsearch`, what kind of interface osjs-search-engine needs to sync with our search engine?

Due to questions mentioned [here](https://github.com/os-js/osjs-client/issues/166#issuecomment-929480379), and also solutions provided [here](https://github.com/os-js/osjs-client/issues/166#issuecomment-945118213) and [here](https://github.com/os-js/osjs-client/issues/166#issuecomment-929494562), we might need **totalCount** and **totalSize** in stats of directories.

Hi. How do you think about adding `share` and `unshare` APIs to `VFS`, so that files could be shared with some other users ( for example by adding some metadata...

Hi. In server-side of my application I am tailing a log file and sending logs via `ws` messages to client. When I unexpectedly close the application, It faces an error:...

Due to [this point](https://github.com/os-js/osjs-client/pull/164#issuecomment-913868931), we'd better to improve client-side sorting. In new code, client will sort only if **VFS server adapter** does not sort before.

This change sends options correctly in readdir request. Relevant: * https://github.com/os-js/osjs-client/pull/165 * https://github.com/os-js/osjs-server/pull/56

I have an application which is heavy to load. Although I `maximize` it in `render` event, there is a delay (means the user see app in its default dimension and...