├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── contributing.md ├── lib └── index.js ├── package.json ├── test ├── fixtures │ ├── basic │ │ └── index.html │ ├── readCache │ │ ├── cache │ │ │ └── dato.json │ │ └── index.html │ ├── template │ │ ├── index.html │ │ └── template.html │ └── writeCache │ │ └── index.html └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/contributing.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/index.html: -------------------------------------------------------------------------------- 1 | {{{ JSON.stringify(dato) }}} 2 | -------------------------------------------------------------------------------- /test/fixtures/readCache/cache/dato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/test/fixtures/readCache/cache/dato.json -------------------------------------------------------------------------------- /test/fixtures/readCache/index.html: -------------------------------------------------------------------------------- 1 | {{{ JSON.stringify(dato) }}} 2 | -------------------------------------------------------------------------------- /test/fixtures/template/index.html: -------------------------------------------------------------------------------- 1 | {{{ JSON.stringify(dato) }}} 2 | -------------------------------------------------------------------------------- /test/fixtures/template/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/test/fixtures/template/template.html -------------------------------------------------------------------------------- /test/fixtures/writeCache/index.html: -------------------------------------------------------------------------------- 1 | {{{ JSON.stringify(dato) }}} 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-datocms/HEAD/yarn.lock --------------------------------------------------------------------------------