83 private links
Inject javascript into any running process (or python, or golang, or any of a bunch of other langauge bindings).
Can be used to hook into processes, run functions, send and receive messages, and a bunch more.
Essentially process injection on steroids - super cool.
It seems to even be able to inject itself to processes on other devices running connected to the machine? Not entirely sure how to implement but take a look at frida-ps
ios example.
Much smaller than other vuejs/nuxt,angular,react frontends.
But has the essentials for most 'javascript-interactive' functionalities provided by many modern websites.
Seems interesting!
Allows writing commandline arguments as if you're in a shell script, but from javascript.
Somewhat similar to execa, but afaik tries to implement its own cross-platform coreutil commands. Has quick $
based syntax by default:
import { $ } from "bun";
const response = await fetch("https://example.com");
// Use Response as stdin.
await $`echo < ${response} > wc -c`; // 120
Simple commandline process execution with javascript. Takes care of stdin/stdout/stderr transformations, termination, newlines, child processes and so on.
An open-source universal messaging library. Seems interesting as a concurrency tool. Implementations and bindings in many many languages.
Pulumi - Infrastructure as Code in any programming language. Build infrastructure intuitively on any cloud using familiar languages 🚀
Basically, bindings and clients to interact with Kubernetes, AWS, GCP, Azure to create infrastructure, containers, serverless functions, etc.
Electron but slimmer basically. Can theoretically be super multi-platform (including mobile soon-ish?).
Allows you to write JS/Typescript for frontend stuff for the desktop just like electron
Create boardgames quickly and easily with this providing a lobby. Is in 3D and can use custom (up to 40MB) assets.
A search engine for websites, embeddable and easily customized. Have seen it run without javascript in my browser, so perhaps it runs on client or server-side js?
Use lua to write code for the browser (basically provides interop with javascript - so you don't have to write javascript to have javascript browser code)
Series of writings on how to build a random quote machine using 11 different front end stacks.
Goes into html, css, (vanilla) javascript, json, REST api, Redux, react hooks. Seems very educational.
A static site generator (similar to hugo et al.) whose sites can be built in any of the big web frameworks (react, vue, angular, svelte, or -- they claim -- any other for that matter).
It also boils everything down to plain html but let's you embed javascript components if you wish,
and those components will only be loaded if the user actually scolls to them ('island design').
Sounds very promising, currently in early beta.
SImple blog tutorial here:
https://www.rockyourcode.com/build-faster-websites-with-less-javascript-using-astro-tutorial/
A quick overview on how to handle async processes in luv in Neovim.
Uses example of spawning a pandoc process, which is a good example starting point for reviewing implementations.
Mostly adequate guide to FP (in javascript).
In-depth guide to principles of functional programming
entity: a unique id and a collection of components
component: a data container
query: a way to gather collections of entities that match some criteria, for use in systems.
prefab: a pre-defined collection of components and even other prefabs to quickly build entities
event: a message to an entity and it's components
This library is heavily inspired by ECS in Caves of Qud. A true ECS library with entities only being ID numbers
Turbolinks makes navigating your web application faster - turbolinks
Minimal frontend framework for javascript
Fast, simple, and enough for simple portfolio etc websites?
:bathtub: Clean Code concepts adapted for JavaScript - ryanmcdermott