
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
github.com/alphabyte02/go-toast
cross-platform library for sending desktop notifications
go get github.com/AlphaBye02/go-toast
Common invocation
package main
import (
"github.com/alphabyte02/go-toast"
)
func main() {
// _ = toast.Push("test message")
_ = toast.Push("test message", toast.WithTitle("app title"))
}
macOS
package main
import (
"github.com/alphabyte02/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test message",
toast.WithTitle("app title"),
toast.WithSubtitle("app sub title"),
toast.WithAudio(toast.Ping),
// toast.WithObjectiveC(true),
)
}
Windows
package main
import (
"github.com/alphabyte02/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test message",
toast.WithTitle("app title"),
toast.WithAppID("app id"),
toast.WithAudio(toast.Default),
toast.WithLongDuration(),
toast.WithIcon("/path/icon.png"),
)
// bs, err := os.ReadFile("/path/icon.png")
// if err != nil {
// log.Fatalln(err)
// }
// toast.WithIconRaw(bs)
}
js && wasm
package main
import (
"fmt"
"github.com/alphabyte02/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test_message",
toast.WithTitle("GO-WASM-APP"),
toast.WithOnClick(func(event interface{}) {
fmt.Println("click")
}),
toast.WithOnClose(func() {
fmt.Println("close")
}),
toast.WithOnShow(func() {
fmt.Println("show")
}),
)
}
Thank you JetBrains for providing free open source licenses
Repository | Description |
---|---|
go-toast/toast | A go package for Windows 10 toast notifications |
fyne-io/fyne | Cross platform GUI in Go inspired by Material Design |
gen2brain/beeep | Go cross-platform library for sending desktop notifications, alerts and beeps |
julienXX/terminal-notifier | Send User Notifications on macOS from the command-line. |
variadico/noti | Monitor a process and trigger a notification. |
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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.