diff options
author | Araq <rumpf_a@web.de> | 2017-11-22 22:54:37 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-11-22 23:19:12 +0100 |
commit | a0a460d682d279ae0294c367f8309334a802d68b (patch) | |
tree | 2ade87b095695f07d5b07bc44bd1efe62e184234 /doc/backends.txt | |
parent | 89fa4388574872c3e56e9e5030cdfe4d758d106c (diff) | |
download | Nim-a0a460d682d279ae0294c367f8309334a802d68b.tar.gz |
minor documentation update
Diffstat (limited to 'doc/backends.txt')
-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 |