Using Ormin as a Dependency
This is a guide about how I use Ormin as my project dependency. Initialize the Project Initialize your new project with Nimble: $ nimble init <myproject> Or, you can also make the directory first and run: $ mkdir <myproject> $ nimble init After that, nimble init will interactively ask you about the metadata of your project, such as package type (library, binary, or hybrid), initial version, description, etc. Initialize Ormin Clone Ormin’s repository from GitHub: ...