Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
git.parallelcoin.io/dev/tview
This Go package provides commonly needed components for terminal based user interfaces.
Among these components are:
They come with lots of customization options and can be easily extended to fit your needs.
go get git.parallelcoin.io/dev/tview
This basic example creates a box titled "Hello, World!" and displays it in your terminal:
package main
import (
"git.parallelcoin.io/dev/tview"
)
func main() {
box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}
Check out the GitHub Wiki for more examples along with screenshots. Or try the examples in the "demos" subdirectory.
For a presentation highlighting this package, compile and run the program found in the "demos/presentation" subdirectory.
Refer to https://godoc.org/git.parallelcoin.io/dev/tview for the package's documentation.
This package is based on git.parallelcoin.io/dev/tview (and its dependencies) as well as on github.com/rivo/uniseg.
Add your issue here on GitHub. Feel free to get in touch if you have any questions.
(There are no corresponding tags in the project. I only keep such a history in this README.)
QueueUpdate()
and QueueEvent()
to Application
to help with modifications to primitives from goroutines.InputField
elements can now be navigated freely.TreeView
.Flex
and Grid
don't clear their background per default, thus allowing for custom modals. See the Wiki for an example.Escape()
function which keep strings like color or region tags from being recognized as such.ANSIWriter()
and TranslateANSI()
which convert ANSI escape sequences to tview
color tags.Application
.RemoveItem()
function to Grid
and Flex
.screen
object through callback in Box
(i.e. for all primitives).Grid
layout.screen
object through callbacks in Application
.TextView
now has word wrapping and text alignmentTextView
now accepts color tags with any W3C color (including RGB hex values).InputField
and password entry to Form
.Styles
variable with default colors for primitives.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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.