瀏覽代碼

nimble: add page

Hugo Locurcio 6 年之前
父節點
當前提交
ad9733bb1f
共有 1 個文件被更改,包括 28 次插入0 次删除
  1. 28 0
      pages/common/nimble.md

+ 28 - 0
pages/common/nimble.md

@@ -0,0 +1,28 @@
+# nimble
+
+> Package manager for the Nim programming language.
+> Manage Nim projects and their dependencies.
+
+- Search for packages:
+
+`nimble search {{search_string}}`
+
+- Install a package:
+
+`nimble install {{package_name}}`
+
+- List installed packages:
+
+`nimble list -i`
+
+- Create a new Nimble package in the current directory:
+
+`nimble init`
+
+- Build the Nimble package in the current directory:
+
+`nimble build`
+
+- Install the Nimble package in the current directory:
+
+`nimble install`