1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 18:02:08 +02:00
tldr/pages/common/nimble.md
2019-06-04 16:29:40 -03:00

29 lines
490 B
Markdown

# nimble
> Package manager for the Nim programming language.
> Manage Nim projects and their dependencies.
> More information: <https://github.com/nim-lang/nimble>.
- 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 a Nimble package:
`nimble build`
- Install a Nimble package:
`nimble install`