文件名称:replicated-list:带有工具的列表,可轻松使副本保持同步
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-04 02:14:09
JavaScript
复制清单 ReplicatedList是一个类似于Array / List的结构,但是具有帮助程序方法,可以轻松地将其状态从一个列表复制到下一个列表。 甚至跨网络! 基本清单示例 var ReplicatedList = require ( 'replicated-list' ) ; // Initial state can be passed during construction var list = new ReplicatedList ( [ 'some' , 'initial' , 'items' ] ) ; list . push ( 'fourthvalue' ) ; console . log ( list . get ( 1 ) ) ; // initial console . log ( list . pop ( ) ) ; // fourthvalue consol
【文件预览】:
replicated-list-master
----package.json(795B)
----test()
--------index.js(5KB)
----src()
--------index.js(2KB)
----.npmignore(5B)
----.gitignore(20B)
----README.md(3KB)