# Node CLI

🖍️ Build a beautiful Node.js CLI with colors, pre-build elements and optional JSX support.

## Documentation

_Documentation will be available shortly._

## Examples

Have a look at some great examples!

```bash
$ npx node-cli@latest --examples
# https://github.com/yandeu/node-cli/blob/main/src/examples/index.tsx
```

<!-- ```tsx
// write a line (gets back the number of lines written)
write()

// clears the terminal
await clearDisplay()

// remove all lines except the first two
await clear(-2)

// remove all lines
await clear() // same as clear(0)

// remove last two lines
await clear(2)

// hide cursor
hideCursor()

// show cursor
showCursor()
``` -->
