An open API service indexing awesome lists of open source software.

https://github.com/kdheepak/notcurses.jl


https://github.com/kdheepak/notcurses.jl

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Notcurses.jl

Notcurses.jl is a Julia package that provides a wrapper over [notcurses](https://github.com/dankamongmen/notcurses), the most blingful TUI library.

### Usage

```julia
import Notcurses as N

nc = N.NotcursesObject(; opts = N.Options(; flags = UInt64(N.OptionsFlags.CLI_MODE | N.OptionsFlags.SUPPRESS_BANNERS)))
plane = N.stdplane(nc)
N.putstrln(plane, "\nhello world!")
N.render(nc)
N.stop(nc)
```