diff options
-rw-r--r-- | doc/backends.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/backends.txt b/doc/backends.txt index fc5bf806c..b7f5308ab 100644 --- a/doc/backends.txt +++ b/doc/backends.txt @@ -207,9 +207,10 @@ from the previous section): Compile the Nim code to JavaScript with ``nim js -o:calculator.js calculator.nim`` and open ``host.html`` in a browser. If the browser supports -javascript, you should see the value ``10``. In JavaScript the `echo proc -<system.html#echo>`_ will modify the HTML DOM and append the string. Use the -`dom module <dom.html>`_ for specific DOM querying and modification procs. +javascript, you should see the value ``10`` in the browser's console. Use the +`dom module <dom.html>`_ for specific DOM querying and modification procs +or take a look at `karax <https://github.com/pragmagic/karax>`_ for how to +develop browser based applications. Backend code calling Nim |