Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@fluidframework/datastore
Advanced tools
When taking a dependency on a Fluid Framework library's public APIs, we recommend using a ^
(caret) version range, such as ^1.3.4
.
While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
library consumers should always prefer ^
.
If using any of Fluid Framework's unstable APIs (for example, its beta
APIs), we recommend using a more constrained version range, such as ~
.
A Fluid handle is a handle to a Fluid object like a DataStore
or a SharedObject
(DDS). It can be used to represent the object in the system and has the capability to get the underlying object by calling get()
on it.
The two major interfaces required to implement a Fluid handle are IFluidHandle
and IFluidHandleContext
defined in fluidHandle.ts.
IFluidHandle
has only one method get
that is used to retrieve the underlying object it represents. It also extends IFluidHandleContext
.
IFluidHandleContext
describes a routing context (another IFluidHandleContext
) that has a path to this IFluidHandleContext
. When creating a Data Store Handle the route context should be the FluidDataStoreRuntime
which knows how to reach the FluidDataStore
. Similarly, the FluidDataStoreRuntime's
route context should be the ContainerRuntime
which knows how to reach it.
For more details on Fluid Handles, check this doc.
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
Use of these trademarks or logos must follow Microsoft's Trademark & Brand Guidelines.
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
FAQs
Fluid data store implementation
The npm package @fluidframework/datastore receives a total of 7,479 weekly downloads. As such, @fluidframework/datastore popularity was classified as popular.
We found that @fluidframework/datastore 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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.