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.
@liveblocks/codemod
Advanced tools
@liveblocks/codemod
Codemods for updating Liveblocks apps.
remove-liveblocks-config-contexts
Replaces createRoomContext
and createLiveblocksContext
in liveblock.config
files with global Liveblocks
types and updates all imports to
@liveblocks/react
accordingly.
npx @liveblocks/codemod@latest remove-liveblocks-config-contexts
If you export the Suspense versions of hooks from createRoomContext
and
createLiveblocksContext
, add the --suspense
flag to update all imports to
@liveblocks/react/suspense
instead.
npx @liveblocks/codemod@latest remove-liveblocks-config-contexts --suspense
remove-unneeded-type-params
Removes no longer needed type params from Liveblocks types (only use this if you are using the global types).
npx @liveblocks/codemod@latest remove-unneeded-type-params
Liveblocks 2.0 comes with a number of breaking changes and most are covered by the following codemods, see the upgrade guide to learn more about the changes.
react-comments-to-react-ui
Updates @liveblocks/react-comments
to @liveblocks/react-ui
and renames
<CommentsConfig />
to <LiveblocksUIConfig />
.
npx @liveblocks/codemod@latest react-comments-to-react-ui
room-info-to-room-data
Renames RoomInfo
type from @liveblocks/node
to RoomData
.
npx @liveblocks/codemod@latest room-info-to-room-data
remove-yjs-default-export
Replaces the default import of @liveblocks/yjs
by a named
LiveblocksYjsProvider
one, and update its usage accordingly.
npx @liveblocks/codemod@latest remove-yjs-default-export
live-list-constructor
Adds an array to empty LiveList
constructors.
npx @liveblocks/codemod@latest live-list-constructor
v2.0.0
This major release marks the maturity of Liveblocks. It contains new products
(@liveblocks/react-lexical
) and clarifications (e.g.
@liveblocks/react-comments
is now called @liveblocks/react-ui
).
Also, we bring major DX improvements by allowing you to specify your types globally now. These types will be typed once and shared across all Liveblocks APIs, which includes your Node backend.
// ❌ Before
export const {
suspense: {
RoomProvider,
useRoom,
// etc
},
} = createRoomContext<Presence, Storage>(client);
// ✅ After
declare global {
interface Liveblocks {
Presence: Presence;
Storage: Storage;
}
}
In @liveblocks/react
, you can now import hooks directly:
// ❌ Before: get hooks exported from your Liveblocks config
import { RoomProvider, useRoom, ... } from "./liveblocks.config";
// ✅ After: import hooks directly
import { RoomProvider, useRoom, ... } from "@liveblocks/react";
import { RoomProvider, useRoom, ... } from "@liveblocks/react/suspense";
// ❌ Before
const client = createClient(/* options */);
// ✅ After
<LiveblocksProvider /* options */>
<App />
</LiveblocksProvider>
For full upgrade instructions and codemods, see the 2.0 upgrade guide.
create-liveblocks-app
--upgrade
flag to automatically update all Liveblocks package to their
latest version.@liveblocks/client
@liveblocks/react
<ClientSideSuspense>
no longer needs a function as its
children
LiveblocksProvider
(replaces the need for createClient
)useClient
useMutation
error message to be less confusing.undefined
values.@liveblocks/react-ui
@liveblocks/react-comments
.<CommentsConfig />
to <LiveblocksUIConfig />
.InboxNotification
props types.@liveblocks/react-lexical
@liveblocks/node-lexical
@liveblocks/yjs
LiveblocksProvider
is no longer a default export, it’s now
import { LiveblocksYjsProvider } from "@liveblocks/yjs"
.@liveblocks/node
RoomInfo
to RoomData
.NotificationEvent
’s type can represent multiple kinds of
notifications. ("thread"
, "textMention"
, and custom ones (e.g.
"$myNotification"
))@liveblocks/codemod
FAQs
Codemods for updating Liveblocks apps.
The npm package @liveblocks/codemod receives a total of 12 weekly downloads. As such, @liveblocks/codemod popularity was classified as not popular.
We found that @liveblocks/codemod demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.