├── .gitignore ├── LICENSE ├── README.md ├── demo ├── index.html ├── index.js └── node-server.cjs ├── package.json ├── rollup.config.js ├── src └── y-dat.js ├── test └── index.js ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/node-server.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/demo/node-server.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/y-dat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/src/y-dat.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjs/y-dat/HEAD/webpack.config.js --------------------------------------------------------------------------------