Pierre Raoul
Pierre Raoul
After inserting the reference path at the beginning of server/main.ts: ``` sed -i '1 i\ /// ' server/main.ts ``` No more "Could not find a declaration file for module 'dir-obj'"...
@ardatan Thank you! It works fine now. I had to add it on any component where a short path is used. Same thing with the pathes to scss files. PS....
I checked all of the 5 pathes of html and scss files existing in the code of [atao60/meteor-angular-ionic](https://github.com/atao60/meteor-angular-ionic): there are all fine. AFAIU, no needs to search for a wrong...
> and probably, no, mongoose & typegoose are not designed to work on client side / in a browser Yes but I try to share "entity" classes between front-end and...
"of" is meaningless on the client side. See Socket.io doc: [Restricting yourself to a namespace](https://socket.io/docs/#Restricting-yourself-to-a-namespace). The @etherealyn's [answer](https://github.com/rodgc/ngx-socket-io/issues/25#issuecomment-465701897) above is almost right. Just remplace: `{ url: 'http://localhost:8080/chat', options: { }...
> PRs are welcome I have no clues on what direction to get. MCB has a very indifferent policy about what can be taken in account as meteor packages. In...
Thanks for this great framework. Have you any idea about a release date for this porting?
> Is the problem that it is not in jl.d.ts? Yes >Are you saying it would help if I made the levelToString function public? Yes, it's OK with the `levelToString`...
About Winston Correct me if I'm wrong: Winston works only on the server side. jsnlog uses it to manage the storage devices. My goal is to use meteor DDP protocol...
@mslourens it's the expected behavior coming from node-fs-extra itself, see [node-fs-extra - doc - move](https://github.com/jprichardson/node-fs-extra/blob/master/docs/move.md#movesrc-dest-options-callback): > Moves a file or directory, even across devices. > > src > dest Note:...