
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
github.com/k0sproject/dig
A simple zero-dependency go package that provides a Ruby-like Hash.dig
mechanism for map[string]any
, which in YAML is refered to as "Mapping".
The provided dig.Mapping
is handy when unmarshaling arbitrary YAML/JSON documents.
package main
import (
"fmt"
"github.com/k0sproject/dig"
"gopkg.in/yaml.v2"
)
var yamlDoc = []byte(`---
i18n:
hello:
se: Hejsan
fi: Moi
world:
se: Värld
fi: Maailma
`)
func main() {
m := dig.Mapping{}
if err := yaml.Unmarshal(yamlDoc, &m); err != nil {
panic(err)
}
// You can use DigMapping to access a deeply nested map and set values.
// Any missing Mapping level in between will be created.
m.DigMapping("i18n", "hello")["es"] = "Hola"
m.DigMapping("i18n", "world")["es"] = "Mundo"
langs := []string{"fi", "se", "es"}
for _, l := range langs {
// You can use Dig to access a deeply nested value
greeting := m.Dig("i18n", "hello", l).(string)
// ..or DigString to avoid having to cast it to string.
target := m.DigString("i18n", "world", l)
fmt.Printf("%s, %s!\n", greeting, target)
}
}
Output:
Moi, Maailma!
Hejsan, Värld!
Hola, Mundo!
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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.