├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── endpoints-frameworks ├── README.md ├── index.html └── main.js ├── package.json ├── speech ├── README.md └── explore-api │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── js │ ├── app.js │ └── app.test.js │ ├── karma.conf.js │ ├── key.js.example │ ├── mocks │ ├── audio.flac.js │ └── gapi.speech.js │ └── resources │ └── audio.flac └── vision ├── README.md └── explore-api ├── .gitignore ├── README.md ├── cat-data.js ├── index.html ├── karma.conf.js ├── key.js.example ├── main.js └── main.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | coverage 3 | node_modules 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/README.md -------------------------------------------------------------------------------- /endpoints-frameworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/endpoints-frameworks/README.md -------------------------------------------------------------------------------- /endpoints-frameworks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/endpoints-frameworks/index.html -------------------------------------------------------------------------------- /endpoints-frameworks/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/endpoints-frameworks/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/package.json -------------------------------------------------------------------------------- /speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/README.md -------------------------------------------------------------------------------- /speech/explore-api/.gitignore: -------------------------------------------------------------------------------- 1 | key.js 2 | twistd.* 3 | -------------------------------------------------------------------------------- /speech/explore-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/README.md -------------------------------------------------------------------------------- /speech/explore-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/index.html -------------------------------------------------------------------------------- /speech/explore-api/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/js/app.js -------------------------------------------------------------------------------- /speech/explore-api/js/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/js/app.test.js -------------------------------------------------------------------------------- /speech/explore-api/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/karma.conf.js -------------------------------------------------------------------------------- /speech/explore-api/key.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/key.js.example -------------------------------------------------------------------------------- /speech/explore-api/mocks/audio.flac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/mocks/audio.flac.js -------------------------------------------------------------------------------- /speech/explore-api/mocks/gapi.speech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/mocks/gapi.speech.js -------------------------------------------------------------------------------- /speech/explore-api/resources/audio.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/speech/explore-api/resources/audio.flac -------------------------------------------------------------------------------- /vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/README.md -------------------------------------------------------------------------------- /vision/explore-api/.gitignore: -------------------------------------------------------------------------------- 1 | key.js 2 | -------------------------------------------------------------------------------- /vision/explore-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/README.md -------------------------------------------------------------------------------- /vision/explore-api/cat-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/cat-data.js -------------------------------------------------------------------------------- /vision/explore-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/index.html -------------------------------------------------------------------------------- /vision/explore-api/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/karma.conf.js -------------------------------------------------------------------------------- /vision/explore-api/key.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/key.js.example -------------------------------------------------------------------------------- /vision/explore-api/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/main.js -------------------------------------------------------------------------------- /vision/explore-api/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/web-docs-samples/HEAD/vision/explore-api/main.test.js --------------------------------------------------------------------------------