├── .gitignore ├── README.md ├── create.sh ├── express-minimal ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── client │ │ └── client.js │ └── server │ │ └── server.js ├── webpack.config.js └── yarn.lock ├── next.js-javascript ├── .gitignore ├── README.md ├── package.json ├── pages │ ├── _app.jsx │ ├── api │ │ └── roomservice.js │ └── index.jsx ├── public │ ├── favicon.ico │ └── vercel.svg └── styles │ └── globals.css ├── next.js-minimal ├── .gitignore ├── README.md ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── roomservice.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ └── globals.css └── tsconfig.json ├── next.js-presence ├── .gitignore ├── README.md ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── roomservice.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ └── globals.css └── tsconfig.json ├── next.js-todolist ├── .gitignore ├── README.md ├── components │ └── ui.tsx ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── roomservice.ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ └── globals.css └── tsconfig.json └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/README.md -------------------------------------------------------------------------------- /create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/create.sh -------------------------------------------------------------------------------- /express-minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/.gitignore -------------------------------------------------------------------------------- /express-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/README.md -------------------------------------------------------------------------------- /express-minimal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/package.json -------------------------------------------------------------------------------- /express-minimal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/public/favicon.ico -------------------------------------------------------------------------------- /express-minimal/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/public/index.html -------------------------------------------------------------------------------- /express-minimal/src/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/src/client/client.js -------------------------------------------------------------------------------- /express-minimal/src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/src/server/server.js -------------------------------------------------------------------------------- /express-minimal/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/webpack.config.js -------------------------------------------------------------------------------- /express-minimal/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/express-minimal/yarn.lock -------------------------------------------------------------------------------- /next.js-javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/.gitignore -------------------------------------------------------------------------------- /next.js-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/README.md -------------------------------------------------------------------------------- /next.js-javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/package.json -------------------------------------------------------------------------------- /next.js-javascript/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/pages/_app.jsx -------------------------------------------------------------------------------- /next.js-javascript/pages/api/roomservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/pages/api/roomservice.js -------------------------------------------------------------------------------- /next.js-javascript/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/pages/index.jsx -------------------------------------------------------------------------------- /next.js-javascript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/public/favicon.ico -------------------------------------------------------------------------------- /next.js-javascript/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/public/vercel.svg -------------------------------------------------------------------------------- /next.js-javascript/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-javascript/styles/globals.css -------------------------------------------------------------------------------- /next.js-minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/.gitignore -------------------------------------------------------------------------------- /next.js-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/README.md -------------------------------------------------------------------------------- /next.js-minimal/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/next-env.d.ts -------------------------------------------------------------------------------- /next.js-minimal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/package.json -------------------------------------------------------------------------------- /next.js-minimal/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/pages/_app.tsx -------------------------------------------------------------------------------- /next.js-minimal/pages/api/roomservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/pages/api/roomservice.ts -------------------------------------------------------------------------------- /next.js-minimal/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/pages/index.tsx -------------------------------------------------------------------------------- /next.js-minimal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/public/favicon.ico -------------------------------------------------------------------------------- /next.js-minimal/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/public/vercel.svg -------------------------------------------------------------------------------- /next.js-minimal/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/styles/globals.css -------------------------------------------------------------------------------- /next.js-minimal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-minimal/tsconfig.json -------------------------------------------------------------------------------- /next.js-presence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/.gitignore -------------------------------------------------------------------------------- /next.js-presence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/README.md -------------------------------------------------------------------------------- /next.js-presence/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/next-env.d.ts -------------------------------------------------------------------------------- /next.js-presence/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/package.json -------------------------------------------------------------------------------- /next.js-presence/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/pages/_app.tsx -------------------------------------------------------------------------------- /next.js-presence/pages/api/roomservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/pages/api/roomservice.ts -------------------------------------------------------------------------------- /next.js-presence/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/pages/index.tsx -------------------------------------------------------------------------------- /next.js-presence/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/public/favicon.ico -------------------------------------------------------------------------------- /next.js-presence/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/public/vercel.svg -------------------------------------------------------------------------------- /next.js-presence/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/styles/globals.css -------------------------------------------------------------------------------- /next.js-presence/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-presence/tsconfig.json -------------------------------------------------------------------------------- /next.js-todolist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/.gitignore -------------------------------------------------------------------------------- /next.js-todolist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/README.md -------------------------------------------------------------------------------- /next.js-todolist/components/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/components/ui.tsx -------------------------------------------------------------------------------- /next.js-todolist/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/next-env.d.ts -------------------------------------------------------------------------------- /next.js-todolist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/package.json -------------------------------------------------------------------------------- /next.js-todolist/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/pages/_app.tsx -------------------------------------------------------------------------------- /next.js-todolist/pages/api/roomservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/pages/api/roomservice.ts -------------------------------------------------------------------------------- /next.js-todolist/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/pages/index.tsx -------------------------------------------------------------------------------- /next.js-todolist/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/public/favicon.ico -------------------------------------------------------------------------------- /next.js-todolist/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/public/vercel.svg -------------------------------------------------------------------------------- /next.js-todolist/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/styles/globals.css -------------------------------------------------------------------------------- /next.js-todolist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/next.js-todolist/tsconfig.json -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/examples/HEAD/update.sh --------------------------------------------------------------------------------