
Research
GemStuffer Campaign Abuses RubyGems as Exfiltration Channel Targeting UK Local Government
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.
@polybase/react
Advanced tools
React wrapper for @polybase/client.
npm install @polybase/react
yarn add @polybase/react
import * as React from 'react'
import { PolybaseProvider } from '@polybase/react'
import { Polybase } from '@polybase/client/web'
const polybase = new Polybase()
export const App = () => {
return (
<PolybaseProvider polybase={polybase}>
{/* ... your app routes */}
</PolybaseProvider>
)
}
import * as React from 'react'
import { usePolybase, useRecord } from '@polybase/react'
export const Component = () => {
const polybase = usePolybase()
const { data, error, loading } = useRecord<OptionalCustomType>(polybase.collection('users').record('id'))
return data.data.name
}
import * as React from 'react'
import { usePolybase, useCollection } from '@polybase/react'
export const Component = () => {
const polybase = usePolybase()
const { data, error, loading } = useCollection<OptionalCustomType>(polybase.collection('users'))
const usersEl = map(data, ({ data }) => {
return (
<div key={data.id}>
{data.name}
</div>
)
})
return usersEl
}
FAQs
React wrapper for @polybase/client
We found that @polybase/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.

Research
Socket detected 84 compromised TanStack npm package artifacts modified with suspected CI credential-stealing malware.