canyouseeme
v1.8.0
Published
 # Can You See Me
Readme

Can You See Me
Simple terminal command to launch a webserver and punch a connection through your firewall.
Run from NPMJS
npx canyouseemeRun from GITHUB
npx github:dgzn/canyouseemeGlobal Install (npm or yarn)
npm
npm i -g canyouseemeyarn
yarn add global canyouseemeTest
npm testTroubleshoot
If the runtime hangs and you can't start a web server try the following
Check for open ports and processes
Mac
netstat -vanp tcp | grep 8080 or sudo lsof -i tcp:8080 CentOS / Ubuntu
netstat -vanp --tcp | grep 8080Windows
tasklist | findstr node
tasklist | findstr ngrokKill Open Processes
Mac
killall node
killall ngrokCentOS / Ubuntu
pkill node
pkill ngrokWindows
taskkill /F /IM node.exe
taskkill /F /IM ngrok.exeTo run the windows commands you have to be in an elevated shell (right click -> Run as administrator)
Todo
- Error handling
- Allow cli paramters for host, port, etc
