From b864a455f2661467186fe980d795cefe4f43f0db Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Sat, 4 Mar 2023 15:30:36 +0100 Subject: [PATCH] DOC: add a `README` to the standard library (#8304) # Description this PR a `README` to the standard library in `crates/nu-utils/standard_library/` :+1: > **Note** > you can have a look at what the `README` looks like [here](https://github.com/amtoine/nushell/blob/doc/add-a-readme-to-the-standard-library/crates/nu-utils/standard_library/README.md#--welcome-to-the-standard-library-of-nushell--) # User-Facing Changes the user can now access some documentation about the standard library. # Tests + Formatting ``` $nothing ``` # After Submitting ``` $nothing ``` --- crates/nu-utils/standard_library/README.md | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 crates/nu-utils/standard_library/README.md diff --git a/crates/nu-utils/standard_library/README.md b/crates/nu-utils/standard_library/README.md new file mode 100644 index 0000000000..4149917fbb --- /dev/null +++ b/crates/nu-utils/standard_library/README.md @@ -0,0 +1,67 @@ +

+ Welcome to the standard library of `nushell`! + +

+ +The standard library is a pure-`nushell` collection of commands to allow anyone to build +complex applications using standardized tools gathered incrementally. + +In this library, you might find `rust`-like `assert` commands to write tests, tools to +manipulate paths and strings, etc, etc, ... + +## :toolbox: use the standard library in the REPL or in scripts +in order to "import" the standard library to either the interactive [*REPL*][REPL] of +`nushell` or inside some `.nu` script, you might want to use the +[`use`](https://nushell.sh/commands/docs/use.html) command! +```bash +use /path/to/standard_library/std.nu +``` + +### :mag: a concrete example +- my name is @amtoine and i use the `ghq` tool to manage `git` projects +> **Note** +> `ghq` stores any repository inside `$env.GHQ_ROOT` under `///` +- the path to my local fork of `nushell` is then defined as +```bash +let-env NUSHELL_REPO = ($env.GHQ_ROOT | path join "github.com" "amtoine" "nushell") +``` +- and the full path to the standard library is defined as +```bash +let-env STD_LIB = ($env.NUSHELL_REPO | path join "crates" "nu-utils" "standard_library") +``` +> see the content of `$env.STD_LIB` :yum: +> ```bash +> >_ ls $env.STD_LIB | get name | str replace $env.STD_LIB "" | str trim -l -c "/" +> ╭───┬───────────╮ +> │ 0 │ README.md │ +> │ 1 │ std.nu │ +> │ 2 │ tests.nu │ +> ╰───┴───────────╯ +> ``` +- finally we can `use` the standard library and have access to the commands it exposes :thumbsup: +```bash +>_ use std.nu +>_ help std +Module: std + +Exported commands: + assert (std assert), assert eq (std assert eq), assert ne (std assert ne), match (std match) + +This module does not export environment. +``` + +## :pencil2: contribute to the standard library +### :wrench: add new commands +- add new standard commands to [`std.nu`](std.nu) +- add associated tests to [`tests.nu`](tests.nu) + - define a new `test_` before the `main` + - import the `assert` functions you need at the top of the functions, e.g. `use std.nu "assert eq"` + - add a call to `test_` at the bottom of the `main` + +### :test_tube: run the tests +the following call should return nothing +```bash +nu ($env.STD_LIB | path join "tests.nu") +``` + +[REPL]: https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop