├── .github ├── CODEOWNERS └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── asconfig.json ├── assembly ├── index.ts └── tsconfig.json ├── fastly.toml └── package.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /bin 3 | /pkg 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/SECURITY.md -------------------------------------------------------------------------------- /asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/asconfig.json -------------------------------------------------------------------------------- /assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/assembly/index.ts -------------------------------------------------------------------------------- /assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/assembly/tsconfig.json -------------------------------------------------------------------------------- /fastly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/fastly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastly/compute-starter-kit-assemblyscript-default/HEAD/package.json --------------------------------------------------------------------------------