├── .github ├── code_of_conduct.md ├── contributing.md ├── pull_request_template.md └── workflows │ ├── binary-build.yml_ │ └── build.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── bin ├── binary-config.js └── binary-entry.js ├── changelog.md ├── eslint.config.js ├── package.json ├── readme.md ├── scripts ├── .npmrc ├── aws-lite-dynamodb.mjs ├── package.json ├── vendor.js └── vendor.sh ├── src ├── arc │ ├── _listener.js │ ├── _livereload │ │ └── index.js │ ├── _runtime-api │ │ └── index.js │ ├── _services.js │ ├── _ssm │ │ └── index.js │ ├── _ws │ │ └── index.js │ └── index.js ├── cli │ ├── _flags.js │ ├── _rehydrate.js │ ├── _stdin.js │ ├── _watcher.js │ ├── arc.js │ ├── cli.js │ └── index.js ├── events │ ├── _listener.js │ └── index.js ├── http │ ├── _config.js │ ├── index.js │ ├── invoke-http │ │ ├── http │ │ │ ├── _req-fmt.js │ │ │ ├── _req-header-fmt.js │ │ │ ├── _res-fmt.js │ │ │ ├── _res-header-fmt.js │ │ │ └── _res-validate.js │ │ ├── index.js │ │ ├── rest │ │ │ ├── _req-fmt.js │ │ │ ├── _req-header-fmt.js │ │ │ ├── _res-fmt.js │ │ │ ├── _res-header-fmt.js │ │ │ └── _res-validate.js │ │ └── utils │ │ │ ├── livereload.js │ │ │ └── validate.js │ ├── invoke-ws │ │ ├── _req-fmt.js │ │ └── index.js │ ├── middleware │ │ ├── _binary-handler.js │ │ ├── _fallback.js │ │ ├── _static-path.js │ │ └── index.js │ ├── register-http │ │ └── index.js │ └── register-websocket │ │ ├── connection.js │ │ ├── index.js │ │ ├── pool.js │ │ ├── send.js │ │ └── upgrade.js ├── index.js ├── invoke-lambda │ ├── _plugin.js │ ├── env │ │ ├── context.js │ │ └── index.js │ ├── exec │ │ ├── index.js │ │ ├── loader.js │ │ ├── runtimes │ │ │ ├── deno.mjs │ │ │ ├── node-esm.mjs │ │ │ ├── node.js │ │ │ ├── python.py │ │ │ └── ruby.rb │ │ └── spawn.js │ ├── index.js │ └── warn.js ├── lib │ ├── errors.js │ ├── get-folder-size.js │ ├── index.js │ ├── load-file.js │ ├── request-id.js │ ├── runtime-eval.js │ ├── template │ │ └── index.js │ └── user-env-vars.js ├── sandbox │ ├── check-runtimes │ │ ├── index.js │ │ └── version-check.js │ ├── creds.js │ ├── env │ │ ├── _user-env.js │ │ └── index.js │ ├── index.js │ ├── maybe-hydrate.js │ ├── plugins │ │ ├── index.js │ │ └── swap-env-vars.js │ ├── ports.js │ ├── print-status.js │ ├── seed.js │ └── startup-scripts.js └── tables │ ├── _get-db-client.js │ ├── _init.js │ ├── create-table │ ├── _create-table.js │ ├── _get-attribute-definitions.js │ ├── _get-global-secondary-index.js │ ├── _get-key-schema.js │ └── index.js │ └── index.js └── test ├── integration ├── __dep-warn-test.js ├── arc │ ├── ssm-test.js │ └── ws-test.js ├── cli-test.js ├── env-test.js ├── events-test.js ├── http │ ├── http-test.js │ ├── httpv1-test.js │ ├── misc-http-test.js │ ├── rest-test.js │ ├── root-handling-test.js │ └── websockets-test.js ├── lambda-termination-test.js ├── misc-test.js ├── module-start-test.js ├── no-arc-test.js ├── plugin-start-end-test.js └── tables-test.js ├── mock ├── coldstart │ ├── app.arc │ ├── prefs.arc │ └── src │ │ └── http │ │ ├── get-chonk │ │ └── index.mjs │ │ └── get-smol │ │ └── index.mjs ├── dep-warn │ ├── all-packages │ │ ├── app.arc │ │ ├── node_modules │ │ │ ├── another-root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── prefs.arc │ │ └── src │ │ │ ├── http │ │ │ ├── get-shared │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── lambda-dep │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── get-views │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── lambda-dep │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── shared │ │ │ ├── index.js │ │ │ └── package.json │ │ │ └── views │ │ │ ├── index.js │ │ │ └── package.json │ ├── basic │ │ ├── app.arc │ │ ├── node_modules │ │ │ └── root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── prefs.arc │ │ └── src │ │ │ ├── http │ │ │ ├── get-deps_found │ │ │ │ ├── config.arc │ │ │ │ └── index.js │ │ │ ├── get-deps_in_lambda │ │ │ │ ├── config.arc │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── lambda-dep │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── get-deps_in_root │ │ │ │ ├── config.arc │ │ │ │ └── index.js │ │ │ ├── get-deps_in_shared │ │ │ │ ├── index.js │ │ │ │ └── node_modules │ │ │ │ │ └── lambda-dep │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── get-deps_missing │ │ │ │ ├── config.arc │ │ │ │ └── index.js │ │ │ └── shared │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ └── root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── package.json │ ├── lambda-packages │ │ ├── app.arc │ │ ├── node_modules │ │ │ └── root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── prefs.arc │ │ └── src │ │ │ ├── http │ │ │ ├── get-shared │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── lambda-dep │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── get-views │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── lambda-dep │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── shared │ │ │ └── index.js │ │ │ └── views │ │ │ └── index.js │ ├── no-packages │ │ ├── app.arc │ │ ├── node_modules │ │ │ └── root-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── prefs.arc │ │ └── src │ │ │ ├── http │ │ │ ├── get-shared │ │ │ │ └── index.js │ │ │ └── get-views │ │ │ │ └── index.js │ │ │ ├── shared │ │ │ └── index.js │ │ │ └── views │ │ │ └── index.js │ └── shared-packages │ │ ├── app.arc │ │ ├── node_modules │ │ └── root-dep │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── prefs.arc │ │ └── src │ │ ├── http │ │ ├── get-shared │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ └── lambda-dep │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── get-views │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ └── lambda-dep │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── shared │ │ ├── index.js │ │ └── package.json │ │ └── views │ │ ├── index.js │ │ └── package.json ├── env │ ├── dot-env │ │ ├── .env │ │ ├── app.arc │ │ └── src │ │ │ └── http │ │ │ └── get-index │ │ │ └── index.js │ └── preferences │ │ ├── app.arc │ │ ├── preferences.arc │ │ └── src │ │ └── http │ │ └── get-index │ │ └── index.js ├── external-db │ └── .arc ├── lambda-termination │ ├── app.arc │ └── src │ │ └── events │ │ ├── event-does-not-timeout │ │ ├── config.arc │ │ └── index.js │ │ ├── event-no-exit-after-return │ │ ├── config.arc │ │ └── index.js │ │ ├── event-timeout-async-child │ │ ├── config.arc │ │ └── index.js │ │ ├── event-timeout-async-settimeout │ │ ├── config.arc │ │ └── index.js │ │ ├── event-timeout-async │ │ ├── config.arc │ │ └── index.js │ │ ├── event-timeout-sync-child │ │ ├── config.arc │ │ └── index.js │ │ └── event-timeout-sync │ │ ├── config.arc │ │ └── index.js ├── missing-handler │ └── app.arc ├── multi-handler │ ├── app.arc │ └── src │ │ └── http │ │ ├── get-deno-index_js │ │ ├── config.arc │ │ └── index.js │ │ ├── get-deno-index_ts │ │ ├── config.arc │ │ └── index.ts │ │ ├── get-deno-index_tsx │ │ ├── config.arc │ │ └── index.tsx │ │ ├── get-deno-mod_js │ │ ├── config.arc │ │ └── mod.js │ │ ├── get-deno-mod_ts │ │ ├── config.arc │ │ └── mod.ts │ │ ├── get-deno-mod_tsx │ │ ├── config.arc │ │ └── mod.tsx │ │ ├── get-node-cjs-index_cjs │ │ └── index.cjs │ │ ├── get-node-cjs-index_js │ │ └── index.js │ │ ├── get-node-esm-index_js │ │ ├── index.js │ │ └── package.json │ │ └── get-node-esm-index_mjs │ │ └── index.mjs ├── multi-tenant │ ├── app.arc │ └── yo │ │ └── index.js ├── no-arc │ ├── nada.txt │ └── public │ │ └── index.html ├── no-functions │ └── .arc ├── no-http │ ├── .arc │ └── src │ │ └── events │ │ └── ping │ │ └── index.js ├── no-index-fail │ ├── .arc │ └── src │ │ ├── events │ │ └── ping │ │ │ └── index.js │ │ └── http │ │ └── get-foo │ │ ├── config.arc │ │ └── index.js ├── no-index-pass │ ├── .arc │ ├── public │ │ └── index.html │ └── src │ │ ├── events │ │ └── ping │ │ │ └── index.js │ │ └── http │ │ └── get-foo │ │ ├── config.arc │ │ └── index.js ├── normal │ ├── app.arc │ ├── public │ │ └── hi.txt │ └── src │ │ ├── events │ │ ├── custom │ │ │ └── index.js │ │ └── event-normal │ │ │ └── index.js │ │ ├── http │ │ ├── any-any │ │ │ └── index.js │ │ ├── any-any_c-catchall │ │ │ └── index.js │ │ ├── any-any_p-000param │ │ │ └── index.js │ │ ├── custom │ │ │ └── index.js │ │ ├── delete-delete │ │ │ └── index.js │ │ ├── get-big │ │ │ └── index.js │ │ ├── get-big_unicode │ │ │ └── index.js │ │ ├── get-binary │ │ │ ├── favicon.ico │ │ │ └── index.js │ │ ├── get-chonky │ │ │ └── index.js │ │ ├── get-context_remaining_ms_node_cjs │ │ │ └── index.js │ │ ├── get-context_remaining_ms_node_esm │ │ │ └── index.mjs │ │ ├── get-deno │ │ │ ├── config.arc │ │ │ └── index.ts │ │ ├── get-env │ │ │ └── index.js │ │ ├── get-get_c-catchall │ │ │ └── index.js │ │ ├── get-get_p_c-000param-catchall │ │ │ └── index.js │ │ ├── get-index │ │ │ └── index.js │ │ ├── get-multi_cookies_res │ │ │ └── index.js │ │ ├── get-no_return │ │ │ └── index.js │ │ ├── get-node_esm │ │ │ └── index.mjs │ │ ├── get-nodejs18_x │ │ │ ├── config.arc │ │ │ └── index.js │ │ ├── get-nodejs20_x │ │ │ ├── config.arc │ │ │ └── index.js │ │ ├── get-nodejs22_x │ │ │ ├── config.arc │ │ │ └── index.js │ │ ├── get-promise_return │ │ │ └── index.js │ │ ├── get-python3_13 │ │ │ ├── config.arc │ │ │ └── index.py │ │ ├── get-python3_9 │ │ │ ├── config.arc │ │ │ └── index.py │ │ ├── get-python_error │ │ │ ├── config.arc │ │ │ └── index.py │ │ ├── get-reject_promise │ │ │ └── index.js │ │ ├── get-ruby3_2 │ │ │ ├── config.arc │ │ │ └── index.rb │ │ ├── get-ruby_error │ │ │ ├── config.arc │ │ │ └── index.rb │ │ ├── get-throw_sync_error │ │ │ └── index.js │ │ ├── get-times_out │ │ │ ├── config.arc │ │ │ └── index.js │ │ ├── head-head │ │ │ └── index.js │ │ ├── options-options │ │ │ └── index.js │ │ ├── patch-patch │ │ │ └── index.js │ │ ├── post-big │ │ │ └── index.js │ │ ├── post-post │ │ │ └── index.js │ │ └── put-put │ │ │ └── index.js │ │ ├── queues │ │ ├── custom │ │ │ └── index.js │ │ └── queue-normal │ │ │ └── index.js │ │ └── ws │ │ ├── connect │ │ └── index.js │ │ ├── custom-path │ │ └── index.js │ │ ├── default │ │ └── index.js │ │ ├── disconnect │ │ └── index.js │ │ ├── error │ │ └── index.js │ │ └── hello │ │ └── index.js ├── plugins-async │ ├── app.arc │ └── src │ │ └── plugins │ │ └── myplugin.js ├── plugins-invoke │ ├── app.arc │ └── src │ │ ├── events │ │ ├── fail-init │ │ │ └── index.mjs │ │ ├── fail-missing-handler │ │ │ └── some-handler.js │ │ ├── fail-userland │ │ │ └── index.js │ │ ├── success-no-result │ │ │ └── index.js │ │ └── success-result │ │ │ └── index.js │ │ └── plugins │ │ └── myplugin.js ├── plugins-sync │ ├── app.arc │ └── src │ │ └── plugins │ │ └── myplugin.js ├── root-handling │ ├── asap │ │ ├── .arc │ │ └── public │ │ │ └── index.html │ ├── bare-static │ │ ├── app.arc │ │ └── public │ │ │ └── index.html │ ├── greedy-get-index │ │ ├── .arc │ │ ├── public │ │ │ └── index.html │ │ └── src │ │ │ └── http │ │ │ └── get-index │ │ │ ├── config.arc │ │ │ └── index.js │ ├── param-exact │ │ ├── .arc │ │ ├── public │ │ │ └── index.html │ │ └── src │ │ │ └── http │ │ │ └── get-000param-there │ │ │ ├── config.arc │ │ │ └── index.js │ └── root-param │ │ ├── .arc │ │ ├── public │ │ └── index.html │ │ └── src │ │ └── http │ │ └── get-000param │ │ ├── config.arc │ │ └── index.js ├── seed-data │ ├── cjs │ │ ├── app.arc │ │ └── sandbox-seed.cjs │ ├── custom │ │ ├── app.arc │ │ ├── prefs.arc │ │ └── seed.js │ ├── js │ │ ├── app.arc │ │ └── sandbox-seed.js │ ├── json │ │ ├── app.arc │ │ └── sandbox-seed.json │ └── mjs │ │ ├── app.arc │ │ └── sandbox-seed.mjs ├── static-prefix │ ├── app.arc │ └── public │ │ └── hi.txt └── watcher │ ├── app.arc │ └── src │ ├── http │ ├── get-index │ │ └── index.js │ └── post-index │ │ └── index.js │ ├── shared │ └── index.js │ └── views │ └── index.js ├── unit ├── src-test.js └── src │ ├── arc │ ├── _ssm │ │ ├── index-test.js │ │ └── services-test.js │ ├── _ws │ │ └── index-test.js │ └── listener-test.js │ ├── cli │ ├── _flags-test.js │ └── _watcher-test.js │ ├── db │ └── create-table │ │ ├── _get-attribute-definitions-test.js │ │ ├── _get-global-secondary-index-test.js │ │ └── _get-key-schema-test.js │ ├── http │ ├── invoke-http │ │ ├── http │ │ │ ├── _req-header-fmt-test.js │ │ │ ├── _res-header-fmt-test.js │ │ │ └── _res-validate-test.js │ │ ├── index-req-test.js │ │ ├── index-res-test.js │ │ ├── index-test.js │ │ └── rest │ │ │ ├── _req-header-fmt-test.js │ │ │ ├── _res-header-fmt-test.js │ │ │ └── _res-validate-test.js │ ├── invoke-ws │ │ └── invoke-req-test.js │ └── middleware │ │ ├── _binary-handler-test.js │ │ └── _static-path-test.js │ ├── invoke-lambda │ ├── _plugin-test.js │ └── index-test.js │ ├── sandbox-test.js │ └── sandbox │ ├── check-runtimes │ └── version-check-test.js │ ├── plugins │ └── swap-env-vars-test.js │ └── ports-test.js └── utils ├── _check-result.js ├── _lib.js ├── _sidechannel.js ├── _startup-shutdown.js └── index.js /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/binary-build.yml_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.github/workflows/binary-build.yml_ -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | save-prefix=~ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/binary-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/bin/binary-config.js -------------------------------------------------------------------------------- /bin/binary-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/bin/binary-entry.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/changelog.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /scripts/aws-lite-dynamodb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/scripts/aws-lite-dynamodb.mjs -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/scripts/vendor.js -------------------------------------------------------------------------------- /scripts/vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/scripts/vendor.sh -------------------------------------------------------------------------------- /src/arc/_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_listener.js -------------------------------------------------------------------------------- /src/arc/_livereload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_livereload/index.js -------------------------------------------------------------------------------- /src/arc/_runtime-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_runtime-api/index.js -------------------------------------------------------------------------------- /src/arc/_services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_services.js -------------------------------------------------------------------------------- /src/arc/_ssm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_ssm/index.js -------------------------------------------------------------------------------- /src/arc/_ws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/_ws/index.js -------------------------------------------------------------------------------- /src/arc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/arc/index.js -------------------------------------------------------------------------------- /src/cli/_flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/_flags.js -------------------------------------------------------------------------------- /src/cli/_rehydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/_rehydrate.js -------------------------------------------------------------------------------- /src/cli/_stdin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/_stdin.js -------------------------------------------------------------------------------- /src/cli/_watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/_watcher.js -------------------------------------------------------------------------------- /src/cli/arc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/arc.js -------------------------------------------------------------------------------- /src/cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/cli.js -------------------------------------------------------------------------------- /src/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/cli/index.js -------------------------------------------------------------------------------- /src/events/_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/events/_listener.js -------------------------------------------------------------------------------- /src/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/events/index.js -------------------------------------------------------------------------------- /src/http/_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/_config.js -------------------------------------------------------------------------------- /src/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/index.js -------------------------------------------------------------------------------- /src/http/invoke-http/http/_req-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/http/_req-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/http/_req-header-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/http/_req-header-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/http/_res-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/http/_res-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/http/_res-header-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/http/_res-header-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/http/_res-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/http/_res-validate.js -------------------------------------------------------------------------------- /src/http/invoke-http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/index.js -------------------------------------------------------------------------------- /src/http/invoke-http/rest/_req-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/rest/_req-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/rest/_req-header-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/rest/_req-header-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/rest/_res-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/rest/_res-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/rest/_res-header-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/rest/_res-header-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-http/rest/_res-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/rest/_res-validate.js -------------------------------------------------------------------------------- /src/http/invoke-http/utils/livereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/utils/livereload.js -------------------------------------------------------------------------------- /src/http/invoke-http/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-http/utils/validate.js -------------------------------------------------------------------------------- /src/http/invoke-ws/_req-fmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-ws/_req-fmt.js -------------------------------------------------------------------------------- /src/http/invoke-ws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/invoke-ws/index.js -------------------------------------------------------------------------------- /src/http/middleware/_binary-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/middleware/_binary-handler.js -------------------------------------------------------------------------------- /src/http/middleware/_fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/middleware/_fallback.js -------------------------------------------------------------------------------- /src/http/middleware/_static-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/middleware/_static-path.js -------------------------------------------------------------------------------- /src/http/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/middleware/index.js -------------------------------------------------------------------------------- /src/http/register-http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-http/index.js -------------------------------------------------------------------------------- /src/http/register-websocket/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-websocket/connection.js -------------------------------------------------------------------------------- /src/http/register-websocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-websocket/index.js -------------------------------------------------------------------------------- /src/http/register-websocket/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-websocket/pool.js -------------------------------------------------------------------------------- /src/http/register-websocket/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-websocket/send.js -------------------------------------------------------------------------------- /src/http/register-websocket/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/http/register-websocket/upgrade.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/index.js -------------------------------------------------------------------------------- /src/invoke-lambda/_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/_plugin.js -------------------------------------------------------------------------------- /src/invoke-lambda/env/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/env/context.js -------------------------------------------------------------------------------- /src/invoke-lambda/env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/env/index.js -------------------------------------------------------------------------------- /src/invoke-lambda/exec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/index.js -------------------------------------------------------------------------------- /src/invoke-lambda/exec/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/loader.js -------------------------------------------------------------------------------- /src/invoke-lambda/exec/runtimes/deno.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/runtimes/deno.mjs -------------------------------------------------------------------------------- /src/invoke-lambda/exec/runtimes/node-esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/runtimes/node-esm.mjs -------------------------------------------------------------------------------- /src/invoke-lambda/exec/runtimes/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/runtimes/node.js -------------------------------------------------------------------------------- /src/invoke-lambda/exec/runtimes/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/runtimes/python.py -------------------------------------------------------------------------------- /src/invoke-lambda/exec/runtimes/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/runtimes/ruby.rb -------------------------------------------------------------------------------- /src/invoke-lambda/exec/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/exec/spawn.js -------------------------------------------------------------------------------- /src/invoke-lambda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/index.js -------------------------------------------------------------------------------- /src/invoke-lambda/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/invoke-lambda/warn.js -------------------------------------------------------------------------------- /src/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/errors.js -------------------------------------------------------------------------------- /src/lib/get-folder-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/get-folder-size.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/load-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/load-file.js -------------------------------------------------------------------------------- /src/lib/request-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/request-id.js -------------------------------------------------------------------------------- /src/lib/runtime-eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/runtime-eval.js -------------------------------------------------------------------------------- /src/lib/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/template/index.js -------------------------------------------------------------------------------- /src/lib/user-env-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/lib/user-env-vars.js -------------------------------------------------------------------------------- /src/sandbox/check-runtimes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/check-runtimes/index.js -------------------------------------------------------------------------------- /src/sandbox/check-runtimes/version-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/check-runtimes/version-check.js -------------------------------------------------------------------------------- /src/sandbox/creds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/creds.js -------------------------------------------------------------------------------- /src/sandbox/env/_user-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/env/_user-env.js -------------------------------------------------------------------------------- /src/sandbox/env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/env/index.js -------------------------------------------------------------------------------- /src/sandbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/index.js -------------------------------------------------------------------------------- /src/sandbox/maybe-hydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/maybe-hydrate.js -------------------------------------------------------------------------------- /src/sandbox/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/plugins/index.js -------------------------------------------------------------------------------- /src/sandbox/plugins/swap-env-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/plugins/swap-env-vars.js -------------------------------------------------------------------------------- /src/sandbox/ports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/ports.js -------------------------------------------------------------------------------- /src/sandbox/print-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/print-status.js -------------------------------------------------------------------------------- /src/sandbox/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/seed.js -------------------------------------------------------------------------------- /src/sandbox/startup-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/sandbox/startup-scripts.js -------------------------------------------------------------------------------- /src/tables/_get-db-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/_get-db-client.js -------------------------------------------------------------------------------- /src/tables/_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/_init.js -------------------------------------------------------------------------------- /src/tables/create-table/_create-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/create-table/_create-table.js -------------------------------------------------------------------------------- /src/tables/create-table/_get-attribute-definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/create-table/_get-attribute-definitions.js -------------------------------------------------------------------------------- /src/tables/create-table/_get-global-secondary-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/create-table/_get-global-secondary-index.js -------------------------------------------------------------------------------- /src/tables/create-table/_get-key-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/create-table/_get-key-schema.js -------------------------------------------------------------------------------- /src/tables/create-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/create-table/index.js -------------------------------------------------------------------------------- /src/tables/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/src/tables/index.js -------------------------------------------------------------------------------- /test/integration/__dep-warn-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/__dep-warn-test.js -------------------------------------------------------------------------------- /test/integration/arc/ssm-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/arc/ssm-test.js -------------------------------------------------------------------------------- /test/integration/arc/ws-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/arc/ws-test.js -------------------------------------------------------------------------------- /test/integration/cli-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/cli-test.js -------------------------------------------------------------------------------- /test/integration/env-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/env-test.js -------------------------------------------------------------------------------- /test/integration/events-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/events-test.js -------------------------------------------------------------------------------- /test/integration/http/http-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/http-test.js -------------------------------------------------------------------------------- /test/integration/http/httpv1-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/httpv1-test.js -------------------------------------------------------------------------------- /test/integration/http/misc-http-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/misc-http-test.js -------------------------------------------------------------------------------- /test/integration/http/rest-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/rest-test.js -------------------------------------------------------------------------------- /test/integration/http/root-handling-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/root-handling-test.js -------------------------------------------------------------------------------- /test/integration/http/websockets-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/http/websockets-test.js -------------------------------------------------------------------------------- /test/integration/lambda-termination-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/lambda-termination-test.js -------------------------------------------------------------------------------- /test/integration/misc-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/misc-test.js -------------------------------------------------------------------------------- /test/integration/module-start-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/module-start-test.js -------------------------------------------------------------------------------- /test/integration/no-arc-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/no-arc-test.js -------------------------------------------------------------------------------- /test/integration/plugin-start-end-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/plugin-start-end-test.js -------------------------------------------------------------------------------- /test/integration/tables-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/integration/tables-test.js -------------------------------------------------------------------------------- /test/mock/coldstart/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/coldstart/app.arc -------------------------------------------------------------------------------- /test/mock/coldstart/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | coldstart true 3 | -------------------------------------------------------------------------------- /test/mock/coldstart/src/http/get-chonk/index.mjs: -------------------------------------------------------------------------------- 1 | export let handler = async () => ({ ok: true }) 2 | -------------------------------------------------------------------------------- /test/mock/coldstart/src/http/get-smol/index.mjs: -------------------------------------------------------------------------------- 1 | export let handler = async () => ({ ok: true }) 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/app.arc -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/node_modules/another-root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/node_modules/another-root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/node_modules/another-root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | delete-vendor false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-shared/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-shared/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-shared/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-shared/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-views/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-views/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-views/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/http/get-views/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/http/get-views/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/all-packages/src/views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/all-packages/src/views/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/app.arc -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | delete-vendor false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_found/config.arc: -------------------------------------------------------------------------------- 1 | @arc 2 | shared false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_found/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_found/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_lambda/config.arc: -------------------------------------------------------------------------------- 1 | @arc 2 | shared false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_lambda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_lambda/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_lambda/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_lambda/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_lambda/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_lambda/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_root/config.arc: -------------------------------------------------------------------------------- 1 | @arc 2 | shared false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_root/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_root/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_shared/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_in_shared/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_in_shared/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_missing/config.arc: -------------------------------------------------------------------------------- 1 | @arc 2 | shared false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/http/get-deps_missing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/http/get-deps_missing/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/shared/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/shared/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/shared/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/basic/src/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/basic/src/shared/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/app.arc -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | delete-vendor false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-shared/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-shared/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-shared/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-shared/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-views/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-views/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-views/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/http/get-views/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/http/get-views/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/lambda-packages/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/lambda-packages/src/views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/app.arc -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | delete-vendor false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/src/http/get-shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/src/http/get-shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/src/http/get-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/src/http/get-views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/src/shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/no-packages/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/no-packages/src/views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/app.arc -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/node_modules/root-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency at the project root!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/node_modules/root-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/node_modules/root-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/prefs.arc: -------------------------------------------------------------------------------- 1 | @sandbox 2 | delete-vendor false 3 | -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/http/get-shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-shared/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-shared/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/http/get-shared/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/http/get-views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-views/node_modules/lambda-dep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'Hello from a dependency in the Lambda!' 2 | -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/http/get-views/node_modules/lambda-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/http/get-views/node_modules/lambda-dep/package.json -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/shared/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/dep-warn/shared-packages/src/views/index.js -------------------------------------------------------------------------------- /test/mock/dep-warn/shared-packages/src/views/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/env/dot-env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/dot-env/.env -------------------------------------------------------------------------------- /test/mock/env/dot-env/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/dot-env/app.arc -------------------------------------------------------------------------------- /test/mock/env/dot-env/src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/dot-env/src/http/get-index/index.js -------------------------------------------------------------------------------- /test/mock/env/preferences/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/preferences/app.arc -------------------------------------------------------------------------------- /test/mock/env/preferences/preferences.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/preferences/preferences.arc -------------------------------------------------------------------------------- /test/mock/env/preferences/src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/env/preferences/src/http/get-index/index.js -------------------------------------------------------------------------------- /test/mock/external-db/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/external-db/.arc -------------------------------------------------------------------------------- /test/mock/lambda-termination/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/app.arc -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-does-not-timeout/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 5 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-does-not-timeout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-does-not-timeout/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-no-exit-after-return/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-no-exit-after-return/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-no-exit-after-return/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async-child/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async-child/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-timeout-async-child/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async-settimeout/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async-settimeout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-timeout-async-settimeout/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-async/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-timeout-async/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-sync-child/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-sync-child/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-timeout-sync-child/index.js -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-sync/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/lambda-termination/src/events/event-timeout-sync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/lambda-termination/src/events/event-timeout-sync/index.js -------------------------------------------------------------------------------- /test/mock/missing-handler/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/missing-handler/app.arc -------------------------------------------------------------------------------- /test/mock/multi-handler/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/app.arc -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_js/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-index_js/index.js -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_ts/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-index_ts/index.ts -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_tsx/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-index_tsx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-index_tsx/index.tsx -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_js/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_js/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-mod_js/mod.js -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_ts/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_ts/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-mod_ts/mod.ts -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_tsx/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime deno 3 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-deno-mod_tsx/mod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-deno-mod_tsx/mod.tsx -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-node-cjs-index_cjs/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-node-cjs-index_cjs/index.cjs -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-node-cjs-index_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-node-cjs-index_js/index.js -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-node-esm-index_js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-node-esm-index_js/index.js -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-node-esm-index_js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/multi-handler/src/http/get-node-esm-index_mjs/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-handler/src/http/get-node-esm-index_mjs/index.mjs -------------------------------------------------------------------------------- /test/mock/multi-tenant/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-tenant/app.arc -------------------------------------------------------------------------------- /test/mock/multi-tenant/yo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/multi-tenant/yo/index.js -------------------------------------------------------------------------------- /test/mock/no-arc/nada.txt: -------------------------------------------------------------------------------- 1 | don't put anything in here tho 2 | -------------------------------------------------------------------------------- /test/mock/no-arc/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-arc/public/index.html -------------------------------------------------------------------------------- /test/mock/no-functions/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-functions/.arc -------------------------------------------------------------------------------- /test/mock/no-http/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-http/.arc -------------------------------------------------------------------------------- /test/mock/no-http/src/events/ping/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async function subscribe () { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/no-index-fail/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-fail/.arc -------------------------------------------------------------------------------- /test/mock/no-index-fail/src/events/ping/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async function subscribe () { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/no-index-fail/src/http/get-foo/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-fail/src/http/get-foo/config.arc -------------------------------------------------------------------------------- /test/mock/no-index-fail/src/http/get-foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-fail/src/http/get-foo/index.js -------------------------------------------------------------------------------- /test/mock/no-index-pass/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-pass/.arc -------------------------------------------------------------------------------- /test/mock/no-index-pass/public/index.html: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /test/mock/no-index-pass/src/events/ping/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async function subscribe () { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/no-index-pass/src/http/get-foo/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-pass/src/http/get-foo/config.arc -------------------------------------------------------------------------------- /test/mock/no-index-pass/src/http/get-foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/no-index-pass/src/http/get-foo/index.js -------------------------------------------------------------------------------- /test/mock/normal/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/app.arc -------------------------------------------------------------------------------- /test/mock/normal/public/hi.txt: -------------------------------------------------------------------------------- 1 | hello from public! 2 | -------------------------------------------------------------------------------- /test/mock/normal/src/events/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/events/custom/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/events/event-normal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/events/event-normal/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/any-any/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/any-any/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/any-any_c-catchall/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/any-any_c-catchall/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/any-any_p-000param/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/any-any_p-000param/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/custom/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/delete-delete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/delete-delete/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-big/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-big/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-big_unicode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-big_unicode/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-binary/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-binary/favicon.ico -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-binary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-binary/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-chonky/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-chonky/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-context_remaining_ms_node_cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-context_remaining_ms_node_cjs/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-context_remaining_ms_node_esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-context_remaining_ms_node_esm/index.mjs -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-deno/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-deno/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-deno/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-deno/index.ts -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-env/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-get_c-catchall/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-get_c-catchall/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-get_p_c-000param-catchall/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-get_p_c-000param-catchall/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-index/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-multi_cookies_res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-multi_cookies_res/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-no_return/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-no_return/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-node_esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-node_esm/index.mjs -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs18_x/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs18_x/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs18_x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs18_x/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs20_x/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs20_x/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs20_x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs20_x/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs22_x/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs22_x/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-nodejs22_x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-nodejs22_x/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-promise_return/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-promise_return/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python3_13/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-python3_13/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python3_13/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-python3_13/index.py -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python3_9/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-python3_9/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python3_9/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-python3_9/index.py -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python_error/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime python 3 | -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-python_error/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-python_error/index.py -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-reject_promise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-reject_promise/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-ruby3_2/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-ruby3_2/config.arc -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-ruby3_2/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-ruby3_2/index.rb -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-ruby_error/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | runtime ruby 3 | -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-ruby_error/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-ruby_error/index.rb -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-throw_sync_error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-throw_sync_error/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-times_out/config.arc: -------------------------------------------------------------------------------- 1 | @aws 2 | timeout 1 3 | -------------------------------------------------------------------------------- /test/mock/normal/src/http/get-times_out/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/get-times_out/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/head-head/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/head-head/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/options-options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/options-options/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/patch-patch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/patch-patch/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/post-big/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/post-big/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/post-post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/post-post/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/http/put-put/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/http/put-put/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/queues/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/queues/custom/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/queues/queue-normal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/queues/queue-normal/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/connect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/connect/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/custom-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/custom-path/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/default/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/disconnect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/disconnect/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/error/index.js -------------------------------------------------------------------------------- /test/mock/normal/src/ws/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/normal/src/ws/hello/index.js -------------------------------------------------------------------------------- /test/mock/plugins-async/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-async/app.arc -------------------------------------------------------------------------------- /test/mock/plugins-async/src/plugins/myplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-async/src/plugins/myplugin.js -------------------------------------------------------------------------------- /test/mock/plugins-invoke/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-invoke/app.arc -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/events/fail-init/index.mjs: -------------------------------------------------------------------------------- 1 | exports.handler = async () => { 2 | let foo = bar 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/events/fail-missing-handler/some-handler.js: -------------------------------------------------------------------------------- 1 | exports.handler = async () => { 2 | let foo = bar 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/events/fail-userland/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async () => { 2 | let foo = bar 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/events/success-no-result/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async () => { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/events/success-result/index.js: -------------------------------------------------------------------------------- 1 | exports.handler = async () => { 2 | return { ok: true } 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/plugins-invoke/src/plugins/myplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-invoke/src/plugins/myplugin.js -------------------------------------------------------------------------------- /test/mock/plugins-sync/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-sync/app.arc -------------------------------------------------------------------------------- /test/mock/plugins-sync/src/plugins/myplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/plugins-sync/src/plugins/myplugin.js -------------------------------------------------------------------------------- /test/mock/root-handling/asap/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/asap/.arc -------------------------------------------------------------------------------- /test/mock/root-handling/asap/public/index.html: -------------------------------------------------------------------------------- 1 | Hello from public/index.html! 2 | -------------------------------------------------------------------------------- /test/mock/root-handling/bare-static/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/bare-static/app.arc -------------------------------------------------------------------------------- /test/mock/root-handling/bare-static/public/index.html: -------------------------------------------------------------------------------- 1 | Hello from public/index.html! 2 | -------------------------------------------------------------------------------- /test/mock/root-handling/greedy-get-index/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/greedy-get-index/.arc -------------------------------------------------------------------------------- /test/mock/root-handling/greedy-get-index/public/index.html: -------------------------------------------------------------------------------- 1 | Hello from public/index.html! 2 | -------------------------------------------------------------------------------- /test/mock/root-handling/greedy-get-index/src/http/get-index/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/greedy-get-index/src/http/get-index/config.arc -------------------------------------------------------------------------------- /test/mock/root-handling/greedy-get-index/src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/greedy-get-index/src/http/get-index/index.js -------------------------------------------------------------------------------- /test/mock/root-handling/param-exact/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/param-exact/.arc -------------------------------------------------------------------------------- /test/mock/root-handling/param-exact/public/index.html: -------------------------------------------------------------------------------- 1 | Hello from public/index.html! 2 | -------------------------------------------------------------------------------- /test/mock/root-handling/param-exact/src/http/get-000param-there/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/param-exact/src/http/get-000param-there/config.arc -------------------------------------------------------------------------------- /test/mock/root-handling/param-exact/src/http/get-000param-there/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/param-exact/src/http/get-000param-there/index.js -------------------------------------------------------------------------------- /test/mock/root-handling/root-param/.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/root-param/.arc -------------------------------------------------------------------------------- /test/mock/root-handling/root-param/public/index.html: -------------------------------------------------------------------------------- 1 | Hello from public/index.html! 2 | -------------------------------------------------------------------------------- /test/mock/root-handling/root-param/src/http/get-000param/config.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/root-param/src/http/get-000param/config.arc -------------------------------------------------------------------------------- /test/mock/root-handling/root-param/src/http/get-000param/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/root-handling/root-param/src/http/get-000param/index.js -------------------------------------------------------------------------------- /test/mock/seed-data/cjs/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/cjs/app.arc -------------------------------------------------------------------------------- /test/mock/seed-data/cjs/sandbox-seed.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/cjs/sandbox-seed.cjs -------------------------------------------------------------------------------- /test/mock/seed-data/custom/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/custom/app.arc -------------------------------------------------------------------------------- /test/mock/seed-data/custom/prefs.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/custom/prefs.arc -------------------------------------------------------------------------------- /test/mock/seed-data/custom/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/custom/seed.js -------------------------------------------------------------------------------- /test/mock/seed-data/js/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/js/app.arc -------------------------------------------------------------------------------- /test/mock/seed-data/js/sandbox-seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/js/sandbox-seed.js -------------------------------------------------------------------------------- /test/mock/seed-data/json/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/json/app.arc -------------------------------------------------------------------------------- /test/mock/seed-data/json/sandbox-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/json/sandbox-seed.json -------------------------------------------------------------------------------- /test/mock/seed-data/mjs/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/mjs/app.arc -------------------------------------------------------------------------------- /test/mock/seed-data/mjs/sandbox-seed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/seed-data/mjs/sandbox-seed.mjs -------------------------------------------------------------------------------- /test/mock/static-prefix/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/static-prefix/app.arc -------------------------------------------------------------------------------- /test/mock/static-prefix/public/hi.txt: -------------------------------------------------------------------------------- 1 | hello from public! 2 | -------------------------------------------------------------------------------- /test/mock/watcher/app.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/watcher/app.arc -------------------------------------------------------------------------------- /test/mock/watcher/src/http/get-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/watcher/src/http/get-index/index.js -------------------------------------------------------------------------------- /test/mock/watcher/src/http/post-index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/mock/watcher/src/http/post-index/index.js -------------------------------------------------------------------------------- /test/mock/watcher/src/shared/index.js: -------------------------------------------------------------------------------- 1 | // Intentionally empty 2 | -------------------------------------------------------------------------------- /test/mock/watcher/src/views/index.js: -------------------------------------------------------------------------------- 1 | // Intentionally empty 2 | -------------------------------------------------------------------------------- /test/unit/src-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src-test.js -------------------------------------------------------------------------------- /test/unit/src/arc/_ssm/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/arc/_ssm/index-test.js -------------------------------------------------------------------------------- /test/unit/src/arc/_ssm/services-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/arc/_ssm/services-test.js -------------------------------------------------------------------------------- /test/unit/src/arc/_ws/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/arc/_ws/index-test.js -------------------------------------------------------------------------------- /test/unit/src/arc/listener-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/arc/listener-test.js -------------------------------------------------------------------------------- /test/unit/src/cli/_flags-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/cli/_flags-test.js -------------------------------------------------------------------------------- /test/unit/src/cli/_watcher-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/cli/_watcher-test.js -------------------------------------------------------------------------------- /test/unit/src/db/create-table/_get-attribute-definitions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/db/create-table/_get-attribute-definitions-test.js -------------------------------------------------------------------------------- /test/unit/src/db/create-table/_get-global-secondary-index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/db/create-table/_get-global-secondary-index-test.js -------------------------------------------------------------------------------- /test/unit/src/db/create-table/_get-key-schema-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/db/create-table/_get-key-schema-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/http/_req-header-fmt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/http/_req-header-fmt-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/http/_res-header-fmt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/http/_res-header-fmt-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/http/_res-validate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/http/_res-validate-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/index-req-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/index-req-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/index-res-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/index-res-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/index-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/rest/_req-header-fmt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/rest/_req-header-fmt-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/rest/_res-header-fmt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/rest/_res-header-fmt-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-http/rest/_res-validate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-http/rest/_res-validate-test.js -------------------------------------------------------------------------------- /test/unit/src/http/invoke-ws/invoke-req-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/invoke-ws/invoke-req-test.js -------------------------------------------------------------------------------- /test/unit/src/http/middleware/_binary-handler-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/middleware/_binary-handler-test.js -------------------------------------------------------------------------------- /test/unit/src/http/middleware/_static-path-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/http/middleware/_static-path-test.js -------------------------------------------------------------------------------- /test/unit/src/invoke-lambda/_plugin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/invoke-lambda/_plugin-test.js -------------------------------------------------------------------------------- /test/unit/src/invoke-lambda/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/invoke-lambda/index-test.js -------------------------------------------------------------------------------- /test/unit/src/sandbox-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/sandbox-test.js -------------------------------------------------------------------------------- /test/unit/src/sandbox/check-runtimes/version-check-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/sandbox/check-runtimes/version-check-test.js -------------------------------------------------------------------------------- /test/unit/src/sandbox/plugins/swap-env-vars-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/sandbox/plugins/swap-env-vars-test.js -------------------------------------------------------------------------------- /test/unit/src/sandbox/ports-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/unit/src/sandbox/ports-test.js -------------------------------------------------------------------------------- /test/utils/_check-result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/utils/_check-result.js -------------------------------------------------------------------------------- /test/utils/_lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/utils/_lib.js -------------------------------------------------------------------------------- /test/utils/_sidechannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/utils/_sidechannel.js -------------------------------------------------------------------------------- /test/utils/_startup-shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/utils/_startup-shutdown.js -------------------------------------------------------------------------------- /test/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architect/sandbox/HEAD/test/utils/index.js --------------------------------------------------------------------------------