36 | 37 | 40 | 41 | 42 |
unattended access. 46 |
47 | 48 |
Remote Address
51 |Please enter the address of remote screen you would like to 52 | access.
53 | 61 | 62 |├── .gitignore
├── server
├── package.json
├── hello.css
├── index.js
└── package-lock.json
└── client
├── build
└── entitlements.mac.plist
├── style.css
├── screen.html
├── js
├── connection.js
├── screen.js
└── index.js
├── connection.html
├── package.json
├── app.js
├── index.html
├── index.css
└── controller
└── screen.controller.js
/.gitignore:
--------------------------------------------------------------------------------
1 | /client/node_modules
2 | /server/node_modules
3 | /client/dist
--------------------------------------------------------------------------------
/server/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "screen-sharing-app",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "start": "node index.js",
9 | "start:dev": "nodemon index.js"
10 | },
11 | "author": "",
12 | "license": "ISC",
13 | "dependencies": {
14 | "buffer-image-size": "^0.6.4",
15 | "cors": "^2.8.5",
16 | "express": "^4.17.1",
17 | "nodemon": "^2.0.9",
18 | "socket.io": "^4.0.0"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/client/build/entitlements.mac.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
By clicking Accept, you will grant permission to access your screen.
40 | 41 | 42 |Please enter the address of remote screen you would like to 52 | access.
53 | 61 | 62 |