Austin Cheney

Results 87 comments of Austin Cheney

This is formally answered in the documentation: https://nodejs.org/dist/latest-v18.x/docs/api/fs.html#fsaccesspath-mode-callback Notice there is a subsection titled *write (NOT RECOMMENDED)* that makes use of the access method and a following subsection titled *write...

My recommendation is to treat this process the way websockets does by following this formula: 1. A client opens a socket to a listener on a server. If the application...

Console is great for troubleshooting code problems, but what you need is shell interaction. I recommend making use of STDIN and STDOUT with Node's readline library https://nodejs.org/dist/latest-v18.x/docs/api/readline.html The readline library...

With IPFS integration in upcoming version 2.0.0, #50 , this issue will be a third of the way solved. Here is the breakdown: * complete #50 and integrate with IPFS...

@lirantal In the near future there may be a software tool developer profession within the US Army's new cyber school. Currently, tool development is a minor skill taught as a...

@tniessen I agree that standard OS access controls, LDAP roles, and other management govern which files a user can access regardless of whether the user is accessing those files via...

> It sounds like when you say "it is simple to use the fs library to ..." that you're worried about malicious code loaded into the runtime. That is somewhat...

@mikesamuel Thank you for your time. I will have to play around with this.

That is a userland feature you can write yourself. I wrote such a thing in a GUI presented in the browser for my personal application. It requires the ability to...

This is likely just anecdotal, but I have also noticed a similar performance change on Chrome in DOM traversal speed. https://jsbench.github.io/#b39045cacae8d8c4a3ec044e538533dc Just a couple years ago Chrome would reach a...