All Projects → saghul → Txiki.js

saghul / Txiki.js

Licence: mit
The tiny JavaScript runtime built with QuickJS, libuv and ❤️

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Txiki.js

nysocks
Nysocks binds kcp and libuv to provide an aggressive tcp tunnel in nodejs.
Stars: ✭ 78 (-89.36%)
Mutual labels:  libuv
uvtls
TLS/SSL extension for libuv that tries to conform to its style and idioms
Stars: ✭ 12 (-98.36%)
Mutual labels:  libuv
Deep Into Node
深入理解Node.js:核心思想与源码分析
Stars: ✭ 4,005 (+446.38%)
Mutual labels:  libuv
hive-desktop
🐝 A small LAN chat app
Stars: ✭ 69 (-90.59%)
Mutual labels:  libuv
help
Need help with libuv? Post your question here.
Stars: ✭ 24 (-96.73%)
Mutual labels:  libuv
Fs
Provide cross platform file operations based on libuv.
Stars: ✭ 276 (-62.35%)
Mutual labels:  libuv
all-about-node
All about Node.js
Stars: ✭ 16 (-97.82%)
Mutual labels:  libuv
Moarvm
A VM with adaptive optimization and JIT compilation, built for Rakudo
Stars: ✭ 537 (-26.74%)
Mutual labels:  libuv
tbag
Tea-bag is Third party extension utility project
Stars: ✭ 13 (-98.23%)
Mutual labels:  libuv
Luvit
Lua + libUV + jIT = pure awesomesauce
Stars: ✭ 3,443 (+369.71%)
Mutual labels:  libuv
jwEngine
A cross-platform C++<->lua server quick solution
Stars: ✭ 226 (-69.17%)
Mutual labels:  libuv
ccxx
This is a cross-platform library software library about c, c ++, unix4, posix. Include gtest, benchmark, cmake, process lock, daemon, libuv, lua, cpython, re2, json, yaml, mysql, redis, opencv, qt, lz4, oci ... https://hub.docker.com/u/oudream
Stars: ✭ 31 (-95.77%)
Mutual labels:  libuv
Libwebsockets
canonical libwebsockets.org networking library
Stars: ✭ 3,314 (+352.11%)
Mutual labels:  libuv
bproxy
high-performance minimal HTTP reverse proxy
Stars: ✭ 28 (-96.18%)
Mutual labels:  libuv
Luv
Bare libuv bindings for lua
Stars: ✭ 466 (-36.43%)
Mutual labels:  libuv
libuvpp
minimal change of libuv for p2p networking
Stars: ✭ 22 (-97%)
Mutual labels:  libuv
luv-vimdocs
No description or website provided.
Stars: ✭ 51 (-93.04%)
Mutual labels:  libuv
Gameproject3
游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D客户端,客户端含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。
Stars: ✭ 655 (-10.64%)
Mutual labels:  libuv
Uv Cpp
libuv wrapper in C++11 /libuv C++11网络库
Stars: ✭ 480 (-34.52%)
Mutual labels:  libuv
S task
awaitable coroutine library for C
Stars: ✭ 317 (-56.75%)
Mutual labels:  libuv

txiki.js — The tiny JavaScript runtime

Build Status

Overview

txikia (basque): small, tiny.

txiki.js is a small and powerful JavaScript runtime. It's built on the shoulders of giants: it uses QuickJS as its JavaScript engine and libuv as the platform layer.

It was formerly named quv.

Features

Browser-like APIs

  • Console API
  • URL & URLSearchParams
  • TextEncoder / TextDecoder APIs
  • EventTarget / Event / CustomEvent
  • XMLHttpRequest & fetch (including AbortController)
  • Performance API
  • Worker API
  • Crypto API (just getRandomValues)
  • WebAssembly (no tables, globals or memory support yet)

Custom features

  • TCP and UDP sockets
  • TTY handles
  • Unix sockets / named pipes
  • Timers
  • Signals
  • File operations
  • Event loop
  • High-resolution time
  • Miscellaneous utility functions
  • Worker threads
  • Child processes
  • DNS (getaddrinfo)
  • WASI (no memory support yet)

See the full API.

Other extras:

  • Import directly from HTTP(S) URLs
  • Import JSON files
  • path module
  • uuid module
  • hashlib module
  • BigFloat and BigDecimal extensions

Supported platforms

  • GNU/Linux
  • macOS
  • Windows (experimental)
  • Other Unixes (please test!)

Building

CMake is necessary.

# Get the code
git clone --recursive https://github.com/saghul/txiki.js --shallow-submodules && cd txiki.js
# Compile it!
make
# Run the REPL
./build/tjs

NOTE: The txiki.js build depends on a number of git submodules (e.g. curl, libuv). If you didn't already clone this repository recursively, make sure you initialize these submodules with git submodule update --init before proceeding to the build.

Thanks

txiki.js stands on shoulders of giants. It wouldn't be what it is today without these libraries:

In addition, txiki.js has these contributors to thank for their help.

Thank you all for making this project possible!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].