├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── compatibility-src ├── .npmignore ├── README.md ├── package.json └── websockets.js ├── demo ├── .editorconfig ├── .gitignore ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── values-v29 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen-Center@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app │ ├── AjaxSocket.js │ ├── WebSocketWrapper.js │ ├── app-root.xml │ ├── app.css │ ├── app.js │ ├── fonts │ │ └── MaterialIcons-Regular.ttf │ ├── icons │ │ ├── ic_pages.png │ │ ├── ic_pages@2x.png │ │ ├── ic_pages@3x.png │ │ ├── ic_pages_2x.png │ │ ├── ic_pages_3x.png │ │ ├── ic_settings.png │ │ ├── ic_settings@2x.png │ │ ├── ic_settings@3x.png │ │ ├── ic_settings_2x.png │ │ └── ic_settings_3x.png │ ├── main-page.css │ ├── main-page.js │ ├── main-page.xml │ ├── settings.css │ ├── settings.js │ └── settings.xml ├── jsconfig.json ├── nativescript.config.ts ├── package-lock.json ├── package.json └── webpack.config.js └── src ├── .npmignore ├── LICENSE ├── README.md ├── nativescript.webpack.js ├── package.json ├── platforms ├── android │ └── websocket.jar └── ios │ └── Podfile ├── websockets-base.android.js ├── websockets-base.ios.js ├── websockets-pocketsocket.js └── websockets.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/README.md -------------------------------------------------------------------------------- /compatibility-src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/compatibility-src/.npmignore -------------------------------------------------------------------------------- /compatibility-src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/compatibility-src/README.md -------------------------------------------------------------------------------- /compatibility-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/compatibility-src/package.json -------------------------------------------------------------------------------- /compatibility-src/websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/compatibility-src/websockets.js -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/Android/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/AjaxSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/AjaxSocket.js -------------------------------------------------------------------------------- /demo/app/WebSocketWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/WebSocketWrapper.js -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/app-root.xml -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/app.js -------------------------------------------------------------------------------- /demo/app/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /demo/app/icons/ic_pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_pages.png -------------------------------------------------------------------------------- /demo/app/icons/ic_pages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_pages@2x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_pages@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_pages@3x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_pages_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_pages_2x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_pages_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_pages_3x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_settings.png -------------------------------------------------------------------------------- /demo/app/icons/ic_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_settings@2x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_settings@3x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_settings_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_settings_2x.png -------------------------------------------------------------------------------- /demo/app/icons/ic_settings_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/icons/ic_settings_3x.png -------------------------------------------------------------------------------- /demo/app/main-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/main-page.css -------------------------------------------------------------------------------- /demo/app/main-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/main-page.js -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/settings.css -------------------------------------------------------------------------------- /demo/app/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/settings.js -------------------------------------------------------------------------------- /demo/app/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/app/settings.xml -------------------------------------------------------------------------------- /demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/jsconfig.json -------------------------------------------------------------------------------- /demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/nativescript.config.ts -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/README.md -------------------------------------------------------------------------------- /src/nativescript.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/nativescript.webpack.js -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/package.json -------------------------------------------------------------------------------- /src/platforms/android/websocket.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/platforms/android/websocket.jar -------------------------------------------------------------------------------- /src/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/platforms/ios/Podfile -------------------------------------------------------------------------------- /src/websockets-base.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/websockets-base.android.js -------------------------------------------------------------------------------- /src/websockets-base.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/websockets-base.ios.js -------------------------------------------------------------------------------- /src/websockets-pocketsocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/websockets-pocketsocket.js -------------------------------------------------------------------------------- /src/websockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NathanaelA/nativescript-websockets/HEAD/src/websockets.js --------------------------------------------------------------------------------