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:
|
|
|
|
```
|
2023-04-19 22:21:27 +02:00
|
|
|
> use std
|
|
|
|
> help commands | select name usage | where name =~ "std "
|
2023-04-17 19:13:50 +02:00
|
|
|
╭────┬─────────────────────────────┬────────────────────────────────────────────────────────────────╮
|
|
|
|
│ # │ name │ usage │
|
2023-04-19 22:21:27 +02:00
|
|
|
├────┼─────────────────────────────┼────────────────────────────────────────────────────────────────┤
|
2023-04-17 19:13:50 +02:00
|
|
|
│ 0 │ std assert │ Universal assert command │
|
|
|
|
│ 1 │ std assert equal │ Assert $left == $right │
|
|
|
|
. . .
|
|
|
|
│ 11 │ std clip │ put the end of a pipe into the system clipboard. │
|
|
|
|
│ 12 │ std dirs add │ Add one or more directories to the list. │
|
|
|
|
. . .
|
|
|
|
├────┼─────────────────────────────┼────────────────────────────────────────────────────────────────┤
|
|
|
|
│ # │ name │ usage │
|
|
|
|
╰────┴─────────────────────────────┴────────────────────────────────────────────────────────────────╯
|
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
|