Live data from Hacker News

Node OS

node-os.com

1–10 of 53 posts

Re: Node OS

#3
I assume the whole thing goes down when left-pad or some other trivial dependency can't be resolved.

Re: Node OS

#4
post #2

I'm astonished that this has been up for an hour and no one's mentioned Atwood's Law: "Any application that can be written in JavaScript, will eventually be written in JavaScript." http://blog.codinghorror.com/the-principle-of-least-power/

THE BIRTH & DEATH OF JAVASCRIPT

https://www.destroyallsoftware.com/talks/the-birth-and-death...

Re: Node OS

#5
One thing I can't seem to find is, is this a true nodejs-based operating system in that it's all single threaded? single-threaded event loop stuff works well for network servers but an OS? To me it seems like a terrible idea.

Re: Node OS

#6
post #5

One thing I can't seem to find is, is this a true nodejs-based operating system in that it's all single threaded? single-threaded event loop stuff works well for network servers but an OS? To me it seems like a terrible idea.

I'm going to have to assume it's using some form of Node's clustering support, which will let you run up to X instances where X is the maximum number of supported instances for the number of cores you have. Otherwise, you're right, bad combination.

Re: Node OS

#7
post #5

One thing I can't seem to find is, is this a true nodejs-based operating system in that it's all single threaded? single-threaded event loop stuff works well for network servers but an OS? To me it seems like a terrible idea.

Why not? Many languages and Operating Systems used to be single threaded. Many still functionally are for a lot of things.

Of course it's still challenging but it's built on top of the Linux kernel so it's also not a pure NodeOS (which would probably be impossible).

Re: Node OS

#9
post #5

One thing I can't seem to find is, is this a true nodejs-based operating system in that it's all single threaded? single-threaded event loop stuff works well for network servers but an OS? To me it seems like a terrible idea.

It's still based on the linux kernel.
Post reply on HN