tools.rst 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ========================
  2. Tools available with Nim
  3. ========================
  4. The standard distribution ships with the following tools:
  5. - | `Hot code reloading <hcr.html>`_
  6. | The "Hot code reloading" feature is built into the compiler but has its own
  7. document explaining how it works.
  8. - | `Documentation generator <docgen.html>`_
  9. | The builtin document generator ``nim doc`` generates HTML documentation
  10. from ``.nim`` source files.
  11. - | `Nimsuggest for IDE support <nimsuggest.html>`_
  12. | Through the ``nimsuggest`` tool, any IDE can query a ``.nim`` source file
  13. and obtain useful information like definition of symbols or suggestions for
  14. completion.
  15. - | `C2nim <https://github.com/nim-lang/c2nim/blob/master/doc/c2nim.rst>`_
  16. | C to Nim source converter. Translates C header files to Nim.
  17. - | `niminst <https://nim-lang.org/docs/niminst.html>`_
  18. | niminst is a tool to generate an installer for a Nim program.
  19. - | `nimgrep <nimgrep.html>`_
  20. | Nim search and replace utility.
  21. - | nimpretty
  22. | ``nimpretty`` is a Nim source code beautifier,
  23. to format code according to the official style guide.