├── .gitignore ├── LICENSE ├── README.md ├── frontend-tools-integrations ├── create-react-app │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── socket.ini │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── next-js │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── init.js │ │ ├── module.js │ │ ├── next.svg │ │ └── vercel.svg │ ├── socket.ini │ ├── src │ │ └── app │ │ │ ├── another-page │ │ │ └── page.tsx │ │ │ ├── bare-page │ │ │ ├── nested-page │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── tailwind.config.ts │ └── tsconfig.json └── vite-vue-ts │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── socket.ini │ ├── src │ ├── App.vue │ ├── assets │ │ └── vue.svg │ ├── components │ │ └── HelloWorld.vue │ ├── main.ts │ ├── style.css │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── react-dashboard ├── .browserslistrc ├── .editorconfig ├── .env ├── .eslintrc.js ├── .gitattributes ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── COMMIT_CONVENTION.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── SUPPORT.md │ └── workflows │ │ ├── npm.yml │ │ └── stale.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── jest.config.js ├── jsconfig.json ├── migration.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── socket.ini └── src │ ├── App.js │ ├── App.test.js │ ├── _nav.js │ ├── assets │ ├── brand │ │ ├── logo-negative.js │ │ ├── logo.js │ │ └── sygnet.js │ └── images │ │ ├── angular.jpg │ │ ├── avatars │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ │ ├── react.jpg │ │ └── vue.jpg │ ├── components │ ├── AppBreadcrumb.js │ ├── AppContent.js │ ├── AppFooter.js │ ├── AppHeader.js │ ├── AppSidebar.js │ ├── AppSidebarNav.js │ ├── DocsCallout.js │ ├── DocsExample.js │ ├── DocsLink.js │ ├── header │ │ ├── AppHeaderDropdown.js │ │ └── index.js │ └── index.js │ ├── index.js │ ├── layout │ └── DefaultLayout.js │ ├── reportWebVitals.js │ ├── routes.js │ ├── scss │ ├── _custom.scss │ ├── _example.scss │ ├── _layout.scss │ ├── _variables.scss │ └── style.scss │ ├── setupTests.js │ ├── store.js │ └── views │ ├── base │ ├── accordion │ │ └── Accordion.js │ ├── breadcrumbs │ │ └── Breadcrumbs.js │ ├── cards │ │ └── Cards.js │ ├── carousels │ │ └── Carousels.js │ ├── collapses │ │ └── Collapses.js │ ├── index.js │ ├── jumbotrons │ │ └── Jumbotrons.js │ ├── list-groups │ │ └── ListGroups.js │ ├── navbars │ │ └── Navbars.js │ ├── navs │ │ └── Navs.js │ ├── paginations │ │ └── Paginations.js │ ├── placeholders │ │ └── Placeholders.js │ ├── popovers │ │ └── Popovers.js │ ├── progress │ │ └── Progress.js │ ├── spinners │ │ └── Spinners.js │ ├── tables │ │ └── Tables.js │ └── tooltips │ │ └── Tooltips.js │ ├── buttons │ ├── button-groups │ │ └── ButtonGroups.js │ ├── buttons │ │ └── Buttons.js │ ├── dropdowns │ │ └── Dropdowns.js │ └── index.js │ ├── charts │ └── Charts.js │ ├── dashboard │ └── Dashboard.js │ ├── forms │ ├── checks-radios │ │ └── ChecksRadios.js │ ├── floating-labels │ │ └── FloatingLabels.js │ ├── form-control │ │ └── FormControl.js │ ├── input-group │ │ └── InputGroup.js │ ├── layout │ │ └── Layout.js │ ├── range │ │ └── Range.js │ ├── select │ │ └── Select.js │ └── validation │ │ └── Validation.js │ ├── icons │ ├── brands │ │ └── Brands.js │ ├── coreui-icons │ │ └── CoreUIIcons.js │ ├── flags │ │ └── Flags.js │ └── index.js │ ├── notifications │ ├── alerts │ │ └── Alerts.js │ ├── badges │ │ └── Badges.js │ ├── index.js │ ├── modals │ │ └── Modals.js │ └── toasts │ │ └── Toasts.js │ ├── pages │ ├── login │ │ └── Login.js │ ├── page404 │ │ └── Page404.js │ ├── page500 │ │ └── Page500.js │ └── register │ │ └── Register.js │ ├── theme │ ├── colors │ │ └── Colors.js │ └── typography │ │ └── Typography.js │ └── widgets │ ├── Widgets.js │ ├── WidgetsBrand.js │ └── WidgetsDropdown.js ├── socket-features ├── extension │ ├── .gitignore │ ├── socket.ini │ └── src │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── main.cc ├── filesystem │ ├── .gitignore │ ├── README.md │ ├── socket.ini │ └── src │ │ └── index.html ├── multiple-windows │ ├── .gitignore │ ├── README.md │ ├── socket.ini │ └── src │ │ ├── index.html │ │ └── new_window.html ├── node-backend-bundled │ ├── .gitignore │ ├── README.md │ ├── get-node.sh │ ├── package.json │ ├── socket.ini │ └── src │ │ ├── backend.js │ │ └── index.html └── node-backend │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── socket.ini │ └── src │ ├── backend.js │ └── index.html └── todomvc ├── README.md ├── package.json ├── socket.ini └── src ├── app.js ├── base.css ├── base.js ├── controller.js ├── helpers.js ├── index.css ├── index.html ├── item.js ├── store.js ├── template.js └── view.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | dist 4 | package-lock.json 5 | *.o 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/README.md -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/.env: -------------------------------------------------------------------------------- 1 | PUBLIC_URL=./ -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/.gitignore -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/README.md -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/package.json -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/index.html -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/logo192.png -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/logo512.png -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/manifest.json -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/public/robots.txt -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/socket.ini -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/App.css -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/App.js -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/App.test.js -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/index.css -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/index.js -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/logo.svg -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend-tools-integrations/create-react-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/create-react-app/src/setupTests.js -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/.gitignore -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/README.md -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/next.config.js -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/package.json -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/postcss.config.js -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/public/init.js: -------------------------------------------------------------------------------- 1 | import('/module.js').then(() => console.log('Init run')) 2 | -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/public/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/public/module.js -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/public/next.svg -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/public/vercel.svg -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/socket.ini -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/another-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/another-page/page.tsx -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/bare-page/nested-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/bare-page/nested-page/page.tsx -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/bare-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/bare-page/page.tsx -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/globals.css -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/src/app/page.tsx -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/tailwind.config.ts -------------------------------------------------------------------------------- /frontend-tools-integrations/next-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/next-js/tsconfig.json -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/.gitignore -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/.vscode/extensions.json -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/README.md -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/index.html -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/package.json -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/public/vite.svg -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/socket.ini -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/src/App.vue -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/src/assets/vue.svg -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/src/main.ts -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/src/style.css -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/tsconfig.json -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/tsconfig.node.json -------------------------------------------------------------------------------- /frontend-tools-integrations/vite-vue-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/frontend-tools-integrations/vite-vue-ts/vite.config.ts -------------------------------------------------------------------------------- /react-dashboard/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.browserslistrc -------------------------------------------------------------------------------- /react-dashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.editorconfig -------------------------------------------------------------------------------- /react-dashboard/.env: -------------------------------------------------------------------------------- 1 | PORT=3000 2 | CHOKIDAR_USEPOLLING=true 3 | -------------------------------------------------------------------------------- /react-dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.eslintrc.js -------------------------------------------------------------------------------- /react-dashboard/.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /react-dashboard/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /react-dashboard/.github/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /react-dashboard/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /react-dashboard/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/FUNDING.yml -------------------------------------------------------------------------------- /react-dashboard/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /react-dashboard/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /react-dashboard/.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/SUPPORT.md -------------------------------------------------------------------------------- /react-dashboard/.github/workflows/npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/workflows/npm.yml -------------------------------------------------------------------------------- /react-dashboard/.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.github/workflows/stale.yml -------------------------------------------------------------------------------- /react-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.gitignore -------------------------------------------------------------------------------- /react-dashboard/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /react-dashboard/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/.prettierrc.js -------------------------------------------------------------------------------- /react-dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/LICENSE -------------------------------------------------------------------------------- /react-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/README.md -------------------------------------------------------------------------------- /react-dashboard/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/jest.config.js -------------------------------------------------------------------------------- /react-dashboard/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/jsconfig.json -------------------------------------------------------------------------------- /react-dashboard/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/migration.md -------------------------------------------------------------------------------- /react-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/package.json -------------------------------------------------------------------------------- /react-dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/public/favicon.ico -------------------------------------------------------------------------------- /react-dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/public/index.html -------------------------------------------------------------------------------- /react-dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/public/manifest.json -------------------------------------------------------------------------------- /react-dashboard/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/socket.ini -------------------------------------------------------------------------------- /react-dashboard/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/App.js -------------------------------------------------------------------------------- /react-dashboard/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/App.test.js -------------------------------------------------------------------------------- /react-dashboard/src/_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/_nav.js -------------------------------------------------------------------------------- /react-dashboard/src/assets/brand/logo-negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/brand/logo-negative.js -------------------------------------------------------------------------------- /react-dashboard/src/assets/brand/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/brand/logo.js -------------------------------------------------------------------------------- /react-dashboard/src/assets/brand/sygnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/brand/sygnet.js -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/angular.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/1.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/2.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/3.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/4.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/5.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/6.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/7.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/8.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/avatars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/avatars/9.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/react.jpg -------------------------------------------------------------------------------- /react-dashboard/src/assets/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/assets/images/vue.jpg -------------------------------------------------------------------------------- /react-dashboard/src/components/AppBreadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppBreadcrumb.js -------------------------------------------------------------------------------- /react-dashboard/src/components/AppContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppContent.js -------------------------------------------------------------------------------- /react-dashboard/src/components/AppFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppFooter.js -------------------------------------------------------------------------------- /react-dashboard/src/components/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppHeader.js -------------------------------------------------------------------------------- /react-dashboard/src/components/AppSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppSidebar.js -------------------------------------------------------------------------------- /react-dashboard/src/components/AppSidebarNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/AppSidebarNav.js -------------------------------------------------------------------------------- /react-dashboard/src/components/DocsCallout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/DocsCallout.js -------------------------------------------------------------------------------- /react-dashboard/src/components/DocsExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/DocsExample.js -------------------------------------------------------------------------------- /react-dashboard/src/components/DocsLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/DocsLink.js -------------------------------------------------------------------------------- /react-dashboard/src/components/header/AppHeaderDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/header/AppHeaderDropdown.js -------------------------------------------------------------------------------- /react-dashboard/src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/header/index.js -------------------------------------------------------------------------------- /react-dashboard/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/components/index.js -------------------------------------------------------------------------------- /react-dashboard/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/index.js -------------------------------------------------------------------------------- /react-dashboard/src/layout/DefaultLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/layout/DefaultLayout.js -------------------------------------------------------------------------------- /react-dashboard/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/reportWebVitals.js -------------------------------------------------------------------------------- /react-dashboard/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/routes.js -------------------------------------------------------------------------------- /react-dashboard/src/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // Here you can add other styles 2 | -------------------------------------------------------------------------------- /react-dashboard/src/scss/_example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/scss/_example.scss -------------------------------------------------------------------------------- /react-dashboard/src/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/scss/_layout.scss -------------------------------------------------------------------------------- /react-dashboard/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/scss/_variables.scss -------------------------------------------------------------------------------- /react-dashboard/src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/scss/style.scss -------------------------------------------------------------------------------- /react-dashboard/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/setupTests.js -------------------------------------------------------------------------------- /react-dashboard/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/store.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/accordion/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/accordion/Accordion.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/breadcrumbs/Breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/breadcrumbs/Breadcrumbs.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/cards/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/cards/Cards.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/carousels/Carousels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/carousels/Carousels.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/collapses/Collapses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/collapses/Collapses.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/index.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/jumbotrons/Jumbotrons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/jumbotrons/Jumbotrons.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/list-groups/ListGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/list-groups/ListGroups.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/navbars/Navbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/navbars/Navbars.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/navs/Navs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/navs/Navs.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/paginations/Paginations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/paginations/Paginations.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/placeholders/Placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/placeholders/Placeholders.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/popovers/Popovers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/popovers/Popovers.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/progress/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/progress/Progress.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/spinners/Spinners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/spinners/Spinners.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/tables/Tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/tables/Tables.js -------------------------------------------------------------------------------- /react-dashboard/src/views/base/tooltips/Tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/base/tooltips/Tooltips.js -------------------------------------------------------------------------------- /react-dashboard/src/views/buttons/button-groups/ButtonGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/buttons/button-groups/ButtonGroups.js -------------------------------------------------------------------------------- /react-dashboard/src/views/buttons/buttons/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/buttons/buttons/Buttons.js -------------------------------------------------------------------------------- /react-dashboard/src/views/buttons/dropdowns/Dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/buttons/dropdowns/Dropdowns.js -------------------------------------------------------------------------------- /react-dashboard/src/views/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/buttons/index.js -------------------------------------------------------------------------------- /react-dashboard/src/views/charts/Charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/charts/Charts.js -------------------------------------------------------------------------------- /react-dashboard/src/views/dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/dashboard/Dashboard.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/checks-radios/ChecksRadios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/checks-radios/ChecksRadios.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/floating-labels/FloatingLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/floating-labels/FloatingLabels.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/form-control/FormControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/form-control/FormControl.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/input-group/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/input-group/InputGroup.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/layout/Layout.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/range/Range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/range/Range.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/select/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/select/Select.js -------------------------------------------------------------------------------- /react-dashboard/src/views/forms/validation/Validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/forms/validation/Validation.js -------------------------------------------------------------------------------- /react-dashboard/src/views/icons/brands/Brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/icons/brands/Brands.js -------------------------------------------------------------------------------- /react-dashboard/src/views/icons/coreui-icons/CoreUIIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/icons/coreui-icons/CoreUIIcons.js -------------------------------------------------------------------------------- /react-dashboard/src/views/icons/flags/Flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/icons/flags/Flags.js -------------------------------------------------------------------------------- /react-dashboard/src/views/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/icons/index.js -------------------------------------------------------------------------------- /react-dashboard/src/views/notifications/alerts/Alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/notifications/alerts/Alerts.js -------------------------------------------------------------------------------- /react-dashboard/src/views/notifications/badges/Badges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/notifications/badges/Badges.js -------------------------------------------------------------------------------- /react-dashboard/src/views/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/notifications/index.js -------------------------------------------------------------------------------- /react-dashboard/src/views/notifications/modals/Modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/notifications/modals/Modals.js -------------------------------------------------------------------------------- /react-dashboard/src/views/notifications/toasts/Toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/notifications/toasts/Toasts.js -------------------------------------------------------------------------------- /react-dashboard/src/views/pages/login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/pages/login/Login.js -------------------------------------------------------------------------------- /react-dashboard/src/views/pages/page404/Page404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/pages/page404/Page404.js -------------------------------------------------------------------------------- /react-dashboard/src/views/pages/page500/Page500.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/pages/page500/Page500.js -------------------------------------------------------------------------------- /react-dashboard/src/views/pages/register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/pages/register/Register.js -------------------------------------------------------------------------------- /react-dashboard/src/views/theme/colors/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/theme/colors/Colors.js -------------------------------------------------------------------------------- /react-dashboard/src/views/theme/typography/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/theme/typography/Typography.js -------------------------------------------------------------------------------- /react-dashboard/src/views/widgets/Widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/widgets/Widgets.js -------------------------------------------------------------------------------- /react-dashboard/src/views/widgets/WidgetsBrand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/widgets/WidgetsBrand.js -------------------------------------------------------------------------------- /react-dashboard/src/views/widgets/WidgetsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/react-dashboard/src/views/widgets/WidgetsDropdown.js -------------------------------------------------------------------------------- /socket-features/extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/.gitignore -------------------------------------------------------------------------------- /socket-features/extension/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/socket.ini -------------------------------------------------------------------------------- /socket-features/extension/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/src/index.css -------------------------------------------------------------------------------- /socket-features/extension/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/src/index.html -------------------------------------------------------------------------------- /socket-features/extension/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/src/index.js -------------------------------------------------------------------------------- /socket-features/extension/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/extension/src/main.cc -------------------------------------------------------------------------------- /socket-features/filesystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/filesystem/.gitignore -------------------------------------------------------------------------------- /socket-features/filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/filesystem/README.md -------------------------------------------------------------------------------- /socket-features/filesystem/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/filesystem/socket.ini -------------------------------------------------------------------------------- /socket-features/filesystem/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/filesystem/src/index.html -------------------------------------------------------------------------------- /socket-features/multiple-windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/multiple-windows/.gitignore -------------------------------------------------------------------------------- /socket-features/multiple-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/multiple-windows/README.md -------------------------------------------------------------------------------- /socket-features/multiple-windows/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/multiple-windows/socket.ini -------------------------------------------------------------------------------- /socket-features/multiple-windows/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/multiple-windows/src/index.html -------------------------------------------------------------------------------- /socket-features/multiple-windows/src/new_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/multiple-windows/src/new_window.html -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/.gitignore -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/README.md -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/get-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/get-node.sh -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/package.json -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/socket.ini -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/src/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/src/backend.js -------------------------------------------------------------------------------- /socket-features/node-backend-bundled/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend-bundled/src/index.html -------------------------------------------------------------------------------- /socket-features/node-backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /socket-features/node-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend/README.md -------------------------------------------------------------------------------- /socket-features/node-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend/package.json -------------------------------------------------------------------------------- /socket-features/node-backend/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend/socket.ini -------------------------------------------------------------------------------- /socket-features/node-backend/src/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend/src/backend.js -------------------------------------------------------------------------------- /socket-features/node-backend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/socket-features/node-backend/src/index.html -------------------------------------------------------------------------------- /todomvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/README.md -------------------------------------------------------------------------------- /todomvc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/package.json -------------------------------------------------------------------------------- /todomvc/socket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/socket.ini -------------------------------------------------------------------------------- /todomvc/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/app.js -------------------------------------------------------------------------------- /todomvc/src/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/base.css -------------------------------------------------------------------------------- /todomvc/src/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/base.js -------------------------------------------------------------------------------- /todomvc/src/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/controller.js -------------------------------------------------------------------------------- /todomvc/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/helpers.js -------------------------------------------------------------------------------- /todomvc/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/index.css -------------------------------------------------------------------------------- /todomvc/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/index.html -------------------------------------------------------------------------------- /todomvc/src/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/item.js -------------------------------------------------------------------------------- /todomvc/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/store.js -------------------------------------------------------------------------------- /todomvc/src/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/template.js -------------------------------------------------------------------------------- /todomvc/src/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketsupply/socket-examples/HEAD/todomvc/src/view.js --------------------------------------------------------------------------------