browsix
browsix copied to clipboard
Browsix is a Unix-like operating system for the browser.
Find is super useful. Full documentation is [here](http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/find.1?query=find&sec=1&arch=amd64). For our implementation we need at least the following flags implemented: - `-name $NAME` - `-iname $NAME` - `-type [df]` For details...
We currently have a few typescript errors like: ``` src/kernel/kernel.ts(16,28): error TS2307: Cannot find module './http_parser'. ``` This is due to the way I've mixed in JS from the node...
Deleting `.deletedFiles.log` causes OverlayFS problems. The file is removed, but internally it seems to assume it is never removed. Revisit this when we've updated to latest BrowserFS to see if...
Currently, `dash` is a checked-in artifact built on my machine. The issue is that it needs a custom emscripten toolchain with Browsix support, and that is a much larger dependency...
It is confusing that after you've started executing a command, you can't send additional input to the command's `stdin`. This causes things like ``` $ cat ``` To effectively hang...
on a normal unix-like OS, if you write to a pipe more than can be appended to its internal buffer, your write block until the other end of the pipe...
Hi, guys, I'm a newbee who wants to participate this project in GSoC. I want to implement `mv` command as my starter task.
I'm not exactly sure what the protocol should be, but @shivamkakkar brought up the good point that the error handling in spawn isn't complete. Right now we eagerly try to...
set up CI - probably travis