Skip to content

hiroshisuga/NinjaPCR-web

 
 

Repository files navigation

NinjaPCR needs WiFi, but that doesn't mean it have to be connected to internet.

You can run console localy without our online console for private network in few commands.

$10 wifi router, $10 Raspberry Pi Zero with $3 8GB micro sd card and PC, iOS or Android phone are everything you need.

image

Run by Docker

  1. Install Docker

Raspberry Pi and most of Linux

curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh

Others including Mac, Windows

  1. Run

Raspberry Pi 2 and 3 (Dockerfile)

docker run --restart=always -it --name ninjapcr -d -p 3000:3000 hisashin/ninjapcr-rpi

Raspberry Pi Zero (Dockerfile)

docker run --restart=always -it --name ninjapcr -d -p 3000:3000 hisashin/ninjapcr-rpi-zero

Others including Mac, Windows and Linux (Dockerfile)

docker run --restart=always -it --name ninjapcr -d -p 3000:3000 hisashin/ninjapcr

Run by Manual

  1. Clone or download this project to your pc by hitting "Clone or download" button on top-right of github page.
  2. Install Node.js if not yet installed.
  3. Open terminal and change directory to the one you copied at step1.
  4. Run
npm install
npx gulp
node app.js

Either way, access http://localhost:3000/console.

Any devices in same network can use that console at http://(ip of your pc):3000/console if port 3000 is open.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 74.9%
  • HTML 19.4%
  • CSS 5.6%
  • Other 0.1%