2023-03-04 15:30:36 +01:00
|
|
|
<h1 align="center">
|
|
|
|
Welcome to the standard library of `nushell`!
|
|
|
|
<img src="https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif" width="28"></img>
|
|
|
|
</h1>
|
|
|
|
|
2023-04-19 22:21:27 +02:00
|
|
|
The standard library is a pure-`nushell` collection of custom commands which
|
2023-04-17 19:13:50 +02:00
|
|
|
provide interactive utilities and building blocks for users writing casual scripts or complex applications.
|
2023-03-04 15:30:36 +01:00
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
To see what's here:
|
2024-07-14 10:10:41 +02:00
|
|
|
```text
|
2023-04-19 22:21:27 +02:00
|
|
|
> use std
|
2024-08-22 12:02:08 +02:00
|
|
|
> scope commands | select name description | where name =~ "std "
|
|
|
|
#┬───────────name────────────┬───────────────────description───────────────────
|
2023-12-06 16:26:02 +01:00
|
|
|
0│std assert │Universal assert command
|
|
|
|
1│std assert equal │Assert $left == $right
|
|
|
|
2│std assert error │Assert that executing the code generates an error
|
|
|
|
3│std assert greater │Assert $left > $right
|
|
|
|
4│std assert greater or equal│Assert $left >= $right
|
|
|
|
... ...
|
|
|
|
─┴───────────────────────────┴─────────────────────────────────────────────────
|
2023-03-04 15:30:36 +01:00
|
|
|
```
|
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
## :toolbox: Using the standard library in the REPL or in scripts
|
2023-04-19 22:21:27 +02:00
|
|
|
All commands in the standard library must be "imported" into the running environment
|
2023-04-17 19:13:50 +02:00
|
|
|
(the interactive read-execute-print-loop (REPL) or a `.nu` script) using the
|
|
|
|
[`use`](https://nushell.sh/commands/docs/use.html) command.
|
2023-03-04 15:30:36 +01:00
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
You can choose to import the whole module, but then must refer to individual commands with a `std` prefix, e.g:
|
2023-04-19 22:21:27 +02:00
|
|
|
```nushell
|
2023-04-17 19:13:50 +02:00
|
|
|
use std
|
2023-04-19 22:21:27 +02:00
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
std log debug "Running now"
|
|
|
|
std assert (1 == 2)
|
|
|
|
```
|
|
|
|
Or you can enumerate the specific commands you want to import and invoke them without the `std` prefix.
|
2023-04-19 22:21:27 +02:00
|
|
|
```nushell
|
2023-04-17 19:13:50 +02:00
|
|
|
use std ["log debug" assert]
|
2023-04-19 22:21:27 +02:00
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
log debug "Running again"
|
|
|
|
assert (2 == 1)
|
|
|
|
```
|
|
|
|
This is probably the form of import you'll want to add to your `env.nu` for interactive use.
|
2023-03-04 15:30:36 +01:00
|
|
|
|
2023-04-17 19:13:50 +02:00
|
|
|
## :pencil2: contribute to the standard library
|
2023-04-19 22:21:27 +02:00
|
|
|
You're invited to contribute to the standard library! See [CONTRIBUTING.md] for details
|
|
|
|
|
|
|
|
[CONTRIBUTING.md]: https://github.com/nushell/nushell/blob/main/crates/nu-std/CONTRIBUTING.md
|