Ecosyste.ms: Awesome
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: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kdheepak/notcurses.jl
- Owner: kdheepak
- License: mit
- Created: 2023-02-25T09:41:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T07:02:33.000Z (over 1 year ago)
- Last Synced: 2024-10-15T16:51:40.109Z (2 months ago)
- Language: Julia
- Size: 41 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- 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)
```