Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Releases: runtimejs/runtime

v0.2.16

30 Sep 16:18
64c5ea2
Compare
Choose a tag to compare

v0.2.14

01 Aug 13:23
b177050
Compare
Choose a tag to compare
0.2.14

v0.2.13

28 Mar 09:57
Compare
Choose a tag to compare
0.2.13

v0.2.12

28 Mar 09:18
Compare
Choose a tag to compare
0.2.12

v0.2.11

28 Mar 08:19
Compare
Choose a tag to compare
0.2.11

v0.2.10

27 Mar 19:47
Compare
Choose a tag to compare
0.2.10

v0.2.9

27 Mar 19:08
Compare
Choose a tag to compare
0.2.9

v0.2.8

27 Mar 14:56
Compare
Choose a tag to compare
0.2.8

[archived] runtime.js v0.1.3

07 Sep 15:18
Compare
Choose a tag to compare

Warning: this is the release of old runtimejs version. Use npm install runtime-tools to get the latest one.

Version 0.1.3 of runtime.js kernel.

  • Halt system when there is nothing to do
  • Basic networking (unstable)
  • Virtio-net NIC driver
  • KVM fixes
  • HPET timer
  • Date.now() microsecond precision
  • other improvements

To run:

  1. Install QEMU
  2. Download runtime and initrd files from this release
  3. Run (without networking)
qemu-system-x86_64                                \
    -m 512                                        \
    -smp 1                                        \
    -kernel runtime                               \
    -initrd initrd                                \
    -serial stdio

runtime.js v0.1.2

27 Jul 00:16
Compare
Choose a tag to compare

Version 0.1.2 of runtime.js kernel.

  • New terminal
  • Shell application
  • User space tools (ls, eval, cat etc)
  • Threading system fixes and improvements
  • Separate v8 isolate for every application

To run:

  1. Install QEMU
  2. Download kernel.bin and initrd files from this release
  3. Run
qemu-system-x86_64                                \
    -m 512                                        \
    -smp 1                                        \
    -kernel kernel.bin                            \
    -initrd initrd                                \
    -serial stdio