首先,我们需要一个第三方的库:(https://github.com/dom96/jester)。nim-lang的官方网也是用它来写的。
其实,浏览过nimlang官方网的朋友,就会发现,上面有一个简单的web例子。
webHW.nim代码:
# a simple html serverimport jester, asyncdispatch, htmlgenroutes: get "/": resp h1("Hello world 2016-05-01")runForever()
import了三个mod。其中asyncdispatch, htmlgen是标准库。
项目目录结构:
敲指令: nim c webHW.nim
最后: