tldr/pages/common/nimble.md

30 lines
485 B
Markdown
Raw Normal View History

2018-07-23 12:58:42 +01:00
# nimble
> Package manager for the Nim programming language.
> Manage Nim projects and their dependencies.
2019-06-04 10:00:09 +01:00
> More information: <https://github.com/nim-lang/nimble>.
2018-07-23 12:58:42 +01:00
- Search for packages:
`nimble search {{search_string}}`
- Install a package:
`nimble install {{package}}`
2018-07-23 12:58:42 +01:00
- List installed packages:
`nimble list -i`
- Create a new Nimble package in the current directory:
`nimble init`
- Build a Nimble package:
2018-07-23 12:58:42 +01:00
`nimble build`
- Install a Nimble package:
2018-07-23 12:58:42 +01:00
`nimble install`