├── .assets ├── dynamic-content-diagram.png └── dynamic-ipfs.png ├── .gitignore ├── ARTICLE.md ├── LICENSE ├── README.md ├── package.json ├── src ├── create-helia.ts ├── dynamic-content.ts ├── globals.ts ├── index.ts └── interactive.ts └── tsconfig.json /.assets/dynamic-content-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/.assets/dynamic-content-diagram.png -------------------------------------------------------------------------------- /.assets/dynamic-ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/.assets/dynamic-ipfs.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /ARTICLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/ARTICLE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/package.json -------------------------------------------------------------------------------- /src/create-helia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/src/create-helia.ts -------------------------------------------------------------------------------- /src/dynamic-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/src/dynamic-content.ts -------------------------------------------------------------------------------- /src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/src/globals.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interactive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/src/interactive.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabcat/dynamic-content/HEAD/tsconfig.json --------------------------------------------------------------------------------