Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vlang/unikernel
https://github.com/vlang/unikernel
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vlang/unikernel
- Owner: vlang
- License: gpl-2.0
- Created: 2024-09-12T10:12:24.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T17:48:05.000Z (3 months ago)
- Last Synced: 2024-11-15T19:33:12.047Z (2 months ago)
- Language: V
- Size: 106 KB
- Stars: 16
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-v - V-Unikernel - A unikernel is a computer program statically linked with the operating system code on which it depends. (Applications / Operating systems/Kernels)
README
# V-Unikernel
V-Unikernel is an effort to write a modern, fast, and useful unikernel in [the V programming language](https://vlang.io).
Join the [Discord chat](https://discord.gg/S5Nm6ZDU38).
## What is V-Unikernel all about?
- Keeping the code as simple and easy to understand as possible, while not sacrificing performance and prioritising code correctness.
- Making a *usable* unikernel which can *run on real hardware*, not just on emulators or virtual machines.
- Targeting modern 64-bit architectures, CPU features, and multi-core computing.
- Maintaining good source-level compatibility with Linux to allow to easily port programs over.
- Exploring V capabilities in unikernel development.
- Having fun.**Note: V-Unikernel is still pre-alpha software not meant for daily or production usage!**
## What is a unikernel?
- A unikernel is a computer program statically linked with the operating system code on which it depends.