
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.
An implementation of MobX written in Ruby.
THIS IS JUST A FUN PROJECT!! It is not production ready.
## Observables in classes
class ExampleClass
include Mobx::Extension
observable :foo, 123
end
example = ExampleClass.new
## Autorun
runner = Mobx.autorun do
puts "Hello: #{example.foo}"
end
example.foo = 456
# > Hello: 456
example.foo = 789
# > Hello: 789
## Actions (transactions)
Mobx.action do
example.foo = 123
example.foo = 999
example.foo = 1337
end
# > Hello: 1337
## Disposing of autoruns
runner.dispose
## Reactions
Mobx.reaction -> { example.foo } do
puts "This doesn't look like anything to me"
end
# > This doesn't look like anything to me
example.foo = 333
# > This doesn't look like anything to me
FAQs
Unknown package
We found that mobx-ruby demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.