raunioroo
about prod & dev dependencies in deno projects
You can do that sure OR have a separate entry point for dev stuff. Then all dependencies can live in one import map. I personally prefer the latter approach. As marvinh said, those import map dependencies are only defined in the import map - they are not automatically used or loaded so defining stuff there is "free". They are actually loaded only if your entry point specifically needs (imports) it. So if your prod entry point does not import dev stuff, none of the dev stuff is loaded.
10 replies
Deno permissions and security
This I don't understand. You can and probably should do ipc via stdout/stdin. Or via files, if you give proper permissions to both processes. Child processes don't inherit permissions of parent, you definitely can specify them separately, and only give the child process access to the files it needs, nothing else.
29 replies
Deno permissions and security
You can't. Unless using web workers which are same process, but different threads. And turns out worker threads can have different permissions. But then, communication between threads (workers and main code) also happens via message passing - which is not that different from what you need to do if you were using child processes. A bit simpler with workers, but the same approach and can be similarly annoying to work with
29 replies
Deno permissions and security
Yeah, I agree doing complex stuff with child processes with message passing is not fun. Can be done and works, but a lot of effort (I even do streaming of files between processes to avoid giving fs access to childs. that was a doozy to implement using json message passing, never again haha... ) Also agree with everything zamfofex said.
29 replies
Deno permissions and security
Reading, I guess there are multiple more or less convoluted ways, but I do it along the lines of this.
No promises this works; I hastily made this example by cutting and pasting from a more complex file, and I may have introduced some errors. But maybe it can get you started. TextLineStream is quite handy in breaking child process output to process them line by line as they come.
29 replies
Deno permissions and security
Something like that I guess. Not sure what you mean by ipc proxy, though, it's quite direct cli input/output like any terminal app would do, just that there is no user it's between parent and child process.
In main process, create a child process from user code, and keep reading that child process output in a streaming manner. As soon as you encounter a new line, parse the line as JSON, and do stuff based on the JSON message.
Child process should of course output JSON that the main process understands (just like,
console.log(JSON.stringify(stuff)) );
or whatever).
Communication works the other way too; main process can write stuff to the child process, and the child process can read that just like it would read normal user input.29 replies
Deno permissions and security
I meant that you could do with web workers the same thing that marvinh suggested using child processes. I'm using child processes also for a similar-ish problem, not web workers, but just shared the thought web workers could work too
29 replies
Deno permissions and security
Not directly. But you can implement some form of message passing between processes by for example reading and writing JSON lines to/from stdin/stdout. It's a bit involved but works great. Not that different from passing messages between main thread and a web worker.
In fact, you should be able to do what @marvinh. suggested using web workers too. That can be slightly more efficient. Web workers inherit the permissions of you main code by default, but looks like you can override that. The manual says specifying permissions in web workers is unstable, idk, have not personally tried that. But look for "Specifying web worker permissions" in https://docs.deno.com/runtime/reference/web_platform_apis/ if interested
29 replies
Function as a value?
Maybe im missing something from the question, but.. Functions in javascript are just values like string, number, or any other value. So, store it as is in a class member, just like you would store a string or any other type?
11 replies
Is it a good idea to use Deno edge functions as a websocket server?
The 50ms limit is pure CPU time; waiting for IO, network and stuff is not counted towards that limit. I don't know if it can be calulated and/or how that applies to longer websocket connections since the limits are "per request" so is over the whole connection time or what. Hopefully someone else with more deploy experience can chime in.
5 replies
Is it a good idea to use Deno edge functions as a websocket server?
Deploy functions are "short lived", so you can't count on them having any particular lifetime. To my knowledge, in practice the typical lifetime is somewhere between minutes up to an hour or so (?). So you need to design your app in a way that it can easily reconnect to another instance, and assume connections are short-lived (or rather "medium-lived" compared to some other edge services). I think it should be doable given those limitations.
5 replies