mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-10 00:55:52 +02:00
nimble: add page
This commit is contained in:
parent
67faba5fb3
commit
ad9733bb1f
1 changed files with 28 additions and 0 deletions
28
pages/common/nimble.md
Normal file
28
pages/common/nimble.md
Normal file
|
@ -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`
|
Loading…
Add table
Reference in a new issue