├── .DS_Store ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.ja-JP.md ├── README.md ├── analysis_options.yaml ├── example ├── .DS_Store ├── example.md ├── lib │ ├── .DS_Store │ ├── main.dart │ ├── pages │ │ ├── auth │ │ │ ├── bindings │ │ │ │ └── auth_binding.dart │ │ │ ├── controller │ │ │ │ └── view_controller.dart │ │ │ └── view │ │ │ │ └── auth.dart │ │ ├── home │ │ │ └── home.dart │ │ ├── html │ │ │ └── html.dart │ │ ├── json │ │ │ └── json.dart │ │ ├── pageable │ │ │ ├── pageable.dart │ │ │ ├── pageable_controller.dart │ │ │ └── pageable_repository.dart │ │ ├── socket │ │ │ └── socket.dart │ │ ├── upload │ │ │ └── upload.dart │ │ ├── user │ │ │ ├── bindings │ │ │ │ └── user_binding.dart │ │ │ ├── controller │ │ │ │ └── user_controller.dart │ │ │ ├── data │ │ │ │ ├── data_model │ │ │ │ │ └── user_model.dart │ │ │ │ ├── data_provider │ │ │ │ │ └── user_data.dart │ │ │ │ └── data_repository │ │ │ │ │ └── user_repository.dart │ │ │ └── view │ │ │ │ └── user_view.dart │ │ └── visibility │ │ │ └── visibility.dart │ └── routes │ │ ├── app_pages.dart │ │ └── app_routes.dart ├── main.exe ├── server └── web │ ├── .last_build_id │ ├── assets │ ├── AssetManifest.json │ ├── FontManifest.json │ ├── NOTICES │ ├── fonts │ │ └── MaterialIcons-Regular.otf │ └── packages │ │ └── cupertino_icons │ │ └── assets │ │ └── CupertinoIcons.ttf │ ├── flutter_service_worker.js │ ├── index.html │ ├── test │ └── version.json ├── get_server.iml ├── get_server.png ├── lib ├── .DS_Store ├── get_server.dart └── src │ ├── .DS_Store │ ├── context │ ├── context_request.dart │ └── context_response.dart │ ├── core │ ├── server.dart │ └── src │ │ ├── models │ │ └── response_base.model.dart │ │ ├── node_mode_mixin.dart │ │ ├── route_config.dart │ │ ├── server_main.dart │ │ ├── server_main_controller.dart │ │ ├── utils │ │ └── token_util.dart │ │ ├── virtual_directory.dart │ │ └── widgets │ │ ├── custom.dart │ │ └── widget.dart │ ├── framework │ ├── get_connect │ │ ├── connect.dart │ │ ├── http │ │ │ └── src │ │ │ │ ├── certificates │ │ │ │ └── certificates.dart │ │ │ │ ├── exceptions │ │ │ │ └── exceptions.dart │ │ │ │ ├── http.dart │ │ │ │ ├── http │ │ │ │ ├── html │ │ │ │ │ ├── file_decoder_html.dart │ │ │ │ │ └── http_request_html.dart │ │ │ │ ├── interface │ │ │ │ │ └── request_base.dart │ │ │ │ ├── io │ │ │ │ │ ├── file_decoder_io.dart │ │ │ │ │ └── http_request_io.dart │ │ │ │ ├── mock │ │ │ │ │ └── http_request_mock.dart │ │ │ │ ├── stub │ │ │ │ │ ├── file_decoder_stub.dart │ │ │ │ │ └── http_request_stub.dart │ │ │ │ └── utils │ │ │ │ │ └── body_decoder.dart │ │ │ │ ├── interceptors │ │ │ │ └── get_modifiers.dart │ │ │ │ ├── multipart │ │ │ │ ├── form_data.dart │ │ │ │ └── multipart_file.dart │ │ │ │ ├── request │ │ │ │ └── request.dart │ │ │ │ ├── response │ │ │ │ └── response.dart │ │ │ │ ├── status │ │ │ │ └── http_status.dart │ │ │ │ └── utils │ │ │ │ └── utils.dart │ │ └── sockets │ │ │ ├── sockets.dart │ │ │ └── src │ │ │ ├── socket_notifier.dart │ │ │ ├── sockets_html.dart │ │ │ ├── sockets_io.dart │ │ │ └── sockets_stub.dart │ ├── get_core │ │ ├── get_core.dart │ │ └── src │ │ │ ├── get_interface.dart │ │ │ ├── get_main.dart │ │ │ ├── log.dart │ │ │ ├── smart_management.dart │ │ │ └── typedefs.dart │ ├── get_instance │ │ ├── get_instance.dart │ │ └── src │ │ │ ├── bindings_interface.dart │ │ │ ├── extension_instance.dart │ │ │ ├── get_instance.dart │ │ │ └── lifecycle.dart │ ├── get_rx │ │ ├── get_rx.dart │ │ └── src │ │ │ ├── rx_stream │ │ │ ├── get_stream.dart │ │ │ ├── mini_stream.dart │ │ │ └── rx_stream.dart │ │ │ ├── rx_typedefs │ │ │ └── rx_typedefs.dart │ │ │ ├── rx_types │ │ │ ├── rx_core │ │ │ │ ├── rx_impl.dart │ │ │ │ ├── rx_interface.dart │ │ │ │ ├── rx_num.dart │ │ │ │ └── rx_string.dart │ │ │ ├── rx_iterables │ │ │ │ ├── rx_list.dart │ │ │ │ ├── rx_map.dart │ │ │ │ └── rx_set.dart │ │ │ └── rx_types.dart │ │ │ └── rx_workers │ │ │ ├── rx_workers.dart │ │ │ └── utils │ │ │ └── debouncer.dart │ └── get_utils │ │ ├── get_utils.dart │ │ └── src │ │ ├── extensions │ │ ├── double_extensions.dart │ │ ├── duration_extensions.dart │ │ ├── dynamic_extensions.dart │ │ ├── event_loop_extensions.dart │ │ ├── export.dart │ │ ├── internacionalization.dart │ │ ├── num_extensions.dart │ │ └── string_extensions.dart │ │ ├── get_utils │ │ └── get_utils.dart │ │ ├── platform │ │ ├── platform.dart │ │ ├── platform_io.dart │ │ └── platform_web.dart │ │ └── queue │ │ └── get_queue.dart │ ├── infrastructure │ └── getx_controller.dart │ ├── routes │ ├── get_page.dart │ └── route.dart │ ├── socket │ ├── socket.dart │ ├── socket_impl.dart │ ├── socket_interface.dart │ └── socket_notifier.dart │ └── widgets │ └── pageable.dart ├── pubspec.lock ├── pubspec.yaml └── test └── get_server_test.dart /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/README.ja-JP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/.DS_Store -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/example.md -------------------------------------------------------------------------------- /example/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/.DS_Store -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/pages/auth/bindings/auth_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/auth/bindings/auth_binding.dart -------------------------------------------------------------------------------- /example/lib/pages/auth/controller/view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/auth/controller/view_controller.dart -------------------------------------------------------------------------------- /example/lib/pages/auth/view/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/auth/view/auth.dart -------------------------------------------------------------------------------- /example/lib/pages/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/home/home.dart -------------------------------------------------------------------------------- /example/lib/pages/html/html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/html/html.dart -------------------------------------------------------------------------------- /example/lib/pages/json/json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/json/json.dart -------------------------------------------------------------------------------- /example/lib/pages/pageable/pageable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/pageable/pageable.dart -------------------------------------------------------------------------------- /example/lib/pages/pageable/pageable_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/pageable/pageable_controller.dart -------------------------------------------------------------------------------- /example/lib/pages/pageable/pageable_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/pageable/pageable_repository.dart -------------------------------------------------------------------------------- /example/lib/pages/socket/socket.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/socket/socket.dart -------------------------------------------------------------------------------- /example/lib/pages/upload/upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/upload/upload.dart -------------------------------------------------------------------------------- /example/lib/pages/user/bindings/user_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/bindings/user_binding.dart -------------------------------------------------------------------------------- /example/lib/pages/user/controller/user_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/controller/user_controller.dart -------------------------------------------------------------------------------- /example/lib/pages/user/data/data_model/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/data/data_model/user_model.dart -------------------------------------------------------------------------------- /example/lib/pages/user/data/data_provider/user_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/data/data_provider/user_data.dart -------------------------------------------------------------------------------- /example/lib/pages/user/data/data_repository/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/data/data_repository/user_repository.dart -------------------------------------------------------------------------------- /example/lib/pages/user/view/user_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/user/view/user_view.dart -------------------------------------------------------------------------------- /example/lib/pages/visibility/visibility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/pages/visibility/visibility.dart -------------------------------------------------------------------------------- /example/lib/routes/app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/routes/app_pages.dart -------------------------------------------------------------------------------- /example/lib/routes/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/lib/routes/app_routes.dart -------------------------------------------------------------------------------- /example/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/main.exe -------------------------------------------------------------------------------- /example/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/server -------------------------------------------------------------------------------- /example/web/.last_build_id: -------------------------------------------------------------------------------- 1 | e837705b78b1732f22d3639f207173ea -------------------------------------------------------------------------------- /example/web/assets/AssetManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/assets/AssetManifest.json -------------------------------------------------------------------------------- /example/web/assets/FontManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/assets/FontManifest.json -------------------------------------------------------------------------------- /example/web/assets/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/assets/NOTICES -------------------------------------------------------------------------------- /example/web/assets/fonts/MaterialIcons-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/assets/fonts/MaterialIcons-Regular.otf -------------------------------------------------------------------------------- /example/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf -------------------------------------------------------------------------------- /example/web/flutter_service_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/flutter_service_worker.js -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/test -------------------------------------------------------------------------------- /example/web/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/example/web/version.json -------------------------------------------------------------------------------- /get_server.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/get_server.iml -------------------------------------------------------------------------------- /get_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/get_server.png -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /lib/get_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/get_server.dart -------------------------------------------------------------------------------- /lib/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/.DS_Store -------------------------------------------------------------------------------- /lib/src/context/context_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/context/context_request.dart -------------------------------------------------------------------------------- /lib/src/context/context_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/context/context_response.dart -------------------------------------------------------------------------------- /lib/src/core/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/server.dart -------------------------------------------------------------------------------- /lib/src/core/src/models/response_base.model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/models/response_base.model.dart -------------------------------------------------------------------------------- /lib/src/core/src/node_mode_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/node_mode_mixin.dart -------------------------------------------------------------------------------- /lib/src/core/src/route_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/route_config.dart -------------------------------------------------------------------------------- /lib/src/core/src/server_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/server_main.dart -------------------------------------------------------------------------------- /lib/src/core/src/server_main_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/server_main_controller.dart -------------------------------------------------------------------------------- /lib/src/core/src/utils/token_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/utils/token_util.dart -------------------------------------------------------------------------------- /lib/src/core/src/virtual_directory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/virtual_directory.dart -------------------------------------------------------------------------------- /lib/src/core/src/widgets/custom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/widgets/custom.dart -------------------------------------------------------------------------------- /lib/src/core/src/widgets/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/core/src/widgets/widget.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/connect.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/certificates/certificates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/certificates/certificates.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/exceptions/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/exceptions/exceptions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/html/file_decoder_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/html/file_decoder_html.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/html/http_request_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/html/http_request_html.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/interface/request_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/interface/request_base.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/io/file_decoder_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/io/file_decoder_io.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/io/http_request_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/io/http_request_io.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/mock/http_request_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/mock/http_request_mock.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/stub/file_decoder_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/stub/file_decoder_stub.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/stub/http_request_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/stub/http_request_stub.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/http/utils/body_decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/http/utils/body_decoder.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/interceptors/get_modifiers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/interceptors/get_modifiers.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/multipart/form_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/multipart/form_data.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/multipart/multipart_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/multipart/multipart_file.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/request/request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/request/request.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/response/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/response/response.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/status/http_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/status/http_status.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/http/src/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/http/src/utils/utils.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/sockets/sockets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/sockets/sockets.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/sockets/src/socket_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/sockets/src/socket_notifier.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/sockets/src/sockets_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/sockets/src/sockets_html.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/sockets/src/sockets_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/sockets/src/sockets_io.dart -------------------------------------------------------------------------------- /lib/src/framework/get_connect/sockets/src/sockets_stub.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_connect/sockets/src/sockets_stub.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/get_core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_core/get_core.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/src/get_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_core/src/get_interface.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/src/get_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_core/src/get_main.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/src/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_core/src/log.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/src/smart_management.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_core/src/smart_management.dart -------------------------------------------------------------------------------- /lib/src/framework/get_core/src/typedefs.dart: -------------------------------------------------------------------------------- 1 | typedef ValueUpdater = T Function(); 2 | -------------------------------------------------------------------------------- /lib/src/framework/get_instance/get_instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_instance/get_instance.dart -------------------------------------------------------------------------------- /lib/src/framework/get_instance/src/bindings_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_instance/src/bindings_interface.dart -------------------------------------------------------------------------------- /lib/src/framework/get_instance/src/extension_instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_instance/src/extension_instance.dart -------------------------------------------------------------------------------- /lib/src/framework/get_instance/src/get_instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_instance/src/get_instance.dart -------------------------------------------------------------------------------- /lib/src/framework/get_instance/src/lifecycle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_instance/src/lifecycle.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/get_rx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/get_rx.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_stream/get_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_stream/get_stream.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_stream/mini_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_stream/mini_stream.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_stream/rx_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_stream/rx_stream.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_typedefs/rx_typedefs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_typedefs/rx_typedefs.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_core/rx_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_core/rx_impl.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_core/rx_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_core/rx_interface.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_core/rx_num.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_core/rx_num.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_core/rx_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_core/rx_string.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_list.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_map.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_iterables/rx_set.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_types/rx_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_types/rx_types.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_workers/rx_workers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_workers/rx_workers.dart -------------------------------------------------------------------------------- /lib/src/framework/get_rx/src/rx_workers/utils/debouncer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_rx/src/rx_workers/utils/debouncer.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/get_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/get_utils.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/double_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/double_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/duration_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/duration_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/dynamic_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/dynamic_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/event_loop_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/event_loop_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/export.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/internacionalization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/internacionalization.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/num_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/num_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/extensions/string_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/extensions/string_extensions.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/get_utils/get_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/get_utils/get_utils.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/platform/platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/platform/platform.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/platform/platform_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/platform/platform_io.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/platform/platform_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/platform/platform_web.dart -------------------------------------------------------------------------------- /lib/src/framework/get_utils/src/queue/get_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/framework/get_utils/src/queue/get_queue.dart -------------------------------------------------------------------------------- /lib/src/infrastructure/getx_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/infrastructure/getx_controller.dart -------------------------------------------------------------------------------- /lib/src/routes/get_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/routes/get_page.dart -------------------------------------------------------------------------------- /lib/src/routes/route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/routes/route.dart -------------------------------------------------------------------------------- /lib/src/socket/socket.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/socket/socket.dart -------------------------------------------------------------------------------- /lib/src/socket/socket_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/socket/socket_impl.dart -------------------------------------------------------------------------------- /lib/src/socket/socket_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/socket/socket_interface.dart -------------------------------------------------------------------------------- /lib/src/socket/socket_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/socket/socket_notifier.dart -------------------------------------------------------------------------------- /lib/src/widgets/pageable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/lib/src/widgets/pageable.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonataslaw/get_server/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/get_server_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | --------------------------------------------------------------------------------