https://github.com/kdheepak/notcurses.jl
https://github.com/kdheepak/notcurses.jl
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kdheepak/notcurses.jl
- Owner: kdheepak
- License: mit
- Created: 2023-02-25T09:41:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-15T14:15:05.000Z (6 months ago)
- Last Synced: 2025-03-23T22:21:13.051Z (3 months ago)
- Language: Julia
- Size: 66.4 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 Nnc = 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)
```