NodeTube

NodeTube is an open-source YouTube alt that offers video, audio and image uploads, livestreaming and built-in monetization

github

Required Software

  • Node.js 8.0+
  • MongoDB
  • Redis
  • ffmpeg

安装

  • redis

docker run -d –name redis -p 6379:6379 redis

  • mongoDB

docker run -d –name mongo -p 27017:27017 mongo:3.6

  • nodetube
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# Get the latest version of NodeTube
git clone https://github.com/mayeaux/nodetube

# Enter the nodetube folder that was just created
cd nodetube

# Install Node modules
npm install

# Then simply start your app
npm start

#If you're developing locally, you can boot the app with nodemon with:
npm run dev

访问地址

http://127.0.0.1:3000

Have Fun!