Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
github.com/racktopsystems/cview
This package is a fork of tview. See FORK.md for more information.
ssh cview.rocketnine.space -p 20000
Available widgets:
Widgets may be customized and extended to suit any application.
Mouse support is available.
A list of applications powered by cview is available via pkg.go.dev.
go get code.rocketnine.space/tslocum/cview
This basic example creates a TextView titled "Hello, World!" and displays it in your terminal:
package main
import (
"code.rocketnine.space/tslocum/cview"
)
func main() {
app := cview.NewApplication()
tv := cview.NewTextView()
tv.SetBorder(true)
tv.SetTitle("Hello, world!")
tv.SetText("Lorem ipsum dolor sit amet")
app.SetRoot(tv, true)
if err := app.Run(); err != nil {
panic(err)
}
}
Examples are available via godoc and in the demos directory.
For a presentation highlighting the features of this package, compile and run the program in the demos/presentation directory.
Package documentation is available via godoc.
An introduction tutorial is also available.
This package is based on github.com/gdamore/tcell (and its dependencies) and github.com/rivo/uniseg.
CONTRIBUTING.md describes how to share issues, suggestions and patches (pull requests).
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.