gitextract_ak8tiifl/ ├── .appveyor.yml ├── .eslintrc.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── RELEASENOTES.md ├── package.json ├── plugin.xml ├── src/ │ ├── ios/ │ │ ├── CDVWKProcessPoolFactory.h │ │ ├── CDVWKProcessPoolFactory.m │ │ ├── CDVWKWebViewEngine.h │ │ ├── CDVWKWebViewEngine.m │ │ ├── CDVWKWebViewUIDelegate.h │ │ ├── CDVWKWebViewUIDelegate.m │ │ ├── GCDWebServer/ │ │ │ ├── Core/ │ │ │ │ ├── GCDWebServer.h │ │ │ │ ├── GCDWebServer.m │ │ │ │ ├── GCDWebServerConnection.h │ │ │ │ ├── GCDWebServerConnection.m │ │ │ │ ├── GCDWebServerFunctions.h │ │ │ │ ├── GCDWebServerFunctions.m │ │ │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ │ │ ├── GCDWebServerPrivate.h │ │ │ │ ├── GCDWebServerRequest.h │ │ │ │ ├── GCDWebServerRequest.m │ │ │ │ ├── GCDWebServerResponse.h │ │ │ │ └── GCDWebServerResponse.m │ │ │ ├── Requests/ │ │ │ │ ├── GCDWebServerDataRequest.h │ │ │ │ ├── GCDWebServerDataRequest.m │ │ │ │ ├── GCDWebServerFileRequest.h │ │ │ │ ├── GCDWebServerFileRequest.m │ │ │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ │ │ ├── GCDWebServerMultiPartFormRequest.m │ │ │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ │ │ └── GCDWebServerURLEncodedFormRequest.m │ │ │ └── Responses/ │ │ │ ├── GCDWebServerDataResponse.h │ │ │ ├── GCDWebServerDataResponse.m │ │ │ ├── GCDWebServerErrorResponse.h │ │ │ ├── GCDWebServerErrorResponse.m │ │ │ ├── GCDWebServerFileResponse.h │ │ │ ├── GCDWebServerFileResponse.m │ │ │ ├── GCDWebServerStreamedResponse.h │ │ │ └── GCDWebServerStreamedResponse.m │ │ ├── LICENSE │ │ └── wk-plugin.js │ └── www/ │ └── ios/ │ └── ios-wkwebview-exec.js └── tests/ ├── ios/ │ ├── CDVWKWebViewEngineTest/ │ │ ├── .gitignore │ │ ├── CDVWKWebViewEngineLibTests/ │ │ │ ├── CDVWKWebViewEngineTest.m │ │ │ └── Info.plist │ │ └── CDVWKWebViewEngineTest.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── CDVWKWebViewEngineTest.xccheckout │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── CDVWKWebViewEngineLib.xcscheme │ │ └── CDVWKWebViewEngineLibTests.xcscheme │ ├── CDVWKWebViewEngineTest.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── CDVWKWebViewEngineTest.xccheckout │ │ └── xcschemes/ │ │ └── CordovaLib.xcscheme │ ├── README.md │ ├── package.json │ └── test.xcconfig ├── package.json ├── plugin.xml └── tests.js