You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Obviously if you're going to write an operating system using jQuery, you're going to need JavaScript. And to get JavaScript running, you need an engine for it.
Duktape was built for this. It's incredibly small, and can be easily integrated with any C setup.
The only argument against these is that they aren't using JIT, which could be a problem if you were to have something big running on them, i.e. an OS. V8 would be a great choice for JIT, though it's a lot larger.
The text was updated successfully, but these errors were encountered:
The reason I was thinking about V8 is it would be easier to incorporate a DOM as I could just copy+paste Chromium's code. I'll take a look at those though
Obviously if you're going to write an operating system using jQuery, you're going to need JavaScript. And to get JavaScript running, you need an engine for it.
Duktape was built for this. It's incredibly small, and can be easily integrated with any C setup.
V7 is another good choice. It's only ~200kb.
The only argument against these is that they aren't using JIT, which could be a problem if you were to have something big running on them, i.e. an OS. V8 would be a great choice for JIT, though it's a lot larger.
The text was updated successfully, but these errors were encountered: