aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2022-10-05 23:18:33 +0200
committerJulien Dessaux2022-10-05 23:18:33 +0200
commit2fa6dbe57e7607dd01939c4d1e2e1b8bde89ae09 (patch)
tree29d30c696d9c90b434269f38de511b41eb9b5842
parentAdded grenade brothers article (diff)
downloadwww-2fa6dbe57e7607dd01939c4d1e2e1b8bde89ae09.tar.gz
www-2fa6dbe57e7607dd01939c4d1e2e1b8bde89ae09.tar.bz2
www-2fa6dbe57e7607dd01939c4d1e2e1b8bde89ae09.zip
Added javascript the good parts book article
-rw-r--r--content/books/misc/javascript-the-good-parts.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/content/books/misc/javascript-the-good-parts.md b/content/books/misc/javascript-the-good-parts.md
new file mode 100644
index 0000000..b5cf7b9
--- /dev/null
+++ b/content/books/misc/javascript-the-good-parts.md
@@ -0,0 +1,9 @@
+---
+title: "JavaScript: The Good Parts"
+description: Douglas Crockford
+date: 2022-10-04
+---
+
+I do not often read computer related books but I felt I needed to finally read this one. I am aware it is getting a bit old and I will now read online about the latest additions to the language to have a better understanding of the current state of things. I might look into typescript too, it will depend on the complexity of what I attempt to do.
+
+I started down this path because of my WebAssembly experimentations with [Grenade Brothers]({{< ref "grenade-brothers.md" >}}). A wasm vm is a bit limited in the interactions it can perform with the outside world and everything interesting (like opening a socket or getting the time of day) needs to be exposed through a javascript api layer. For my game this was all handled by wasm4, but if I want to try something else I will need some javascript knowledge.