Gathering detailed insights and metrics for y-protocols
Gathering detailed insights and metrics for y-protocols
Gathering detailed insights and metrics for y-protocols
Gathering detailed insights and metrics for y-protocols
npm install y-protocols
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
118 Stars
82 Commits
41 Forks
7 Watching
1 Branches
11 Contributors
Updated on 17 Nov 2024
JavaScript (99.24%)
HTML (0.76%)
Cumulative downloads
Total Downloads
Last day
4.8%
69,276
Compared to previous day
Last week
0.4%
345,752
Compared to previous week
Last month
10.3%
1,523,736
Compared to previous month
Last year
108.6%
14,529,458
Compared to previous year
1
1
Binary encoding protocols for syncing, awareness, and history information
This API is unstable and subject to change.
1import * as awarenessProtocol from 'y-protocols/awareness.js'
The Awareness protocol implements a simple network agnostic algorithm that manages user status (who is online?) and propagate awareness information like cursor location, username, or email address. Each client can update its own local state and listen to state changes of remote clients.
Each client has an awareness state. Remote awareness are stored in a Map that maps from remote client id to remote awareness state. An awareness state is an increasing clock attached to a schemaless json object.
Whenever the client changes its local state, it increases the clock and
propagates its own awareness state to all peers. When a client receives a remote
awareness state, and overwrites the clients state if the received state is newer
than the local awareness state for that client. If the state is null
, the
client is marked as offline. If a client doesn't receive updates from a remote
peer for 30 seconds, it marks the remote client as offline. Hence each client
must broadcast its own awareness state in a regular interval to make sure that
remote clients don't mark it as offline.
1const ydoc = new Y.Doc()
2const awareness = new awarenessProtocol.Awareness(ydoc)
clientID:number
getLocalState():Object<string,any>|null
setLocalState(Object<string,any>|null)
setLocalStateField(string, any)
getStates():Map<number,Object<string,any>>
on('change', ({ added: Array<number>, updated: Array<number>
removed: Array<number> }, [transactionOrigin:any]) => ..)
on('update', ({ added: Array<number>, updated: Array<number>
removed: Array<number> }, [transactionOrigin:any]) => ..)
The MIT License © Kevin Jahns
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 7/22 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More