tldr/pages/common/nimble.md

29 lines
486 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.
- 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`