Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@moartube/moartube-node
Advanced tools
A free, open-source, self-hosted, anonymous, decentralized video/live stream platform. Scalable via Cloudflare, works in the cloud or from home WiFi.
A repository containing the MoarTube Node software, a cross-platform terminal-based Node.js Express application, managed by the MoarTube Client. Share your node's videos with MoarTube or do your own thing and run your node privately. MoarTube makes video and live streaming so easy you'll be amazed beyond belief.
MoarTube Node can be found on DockerHub and can be managed with software like Docker Desktop, or follow the manual approach below to start your node if you don't want to use Docker. When ready, head over to MoarTube Client if you haven't yet.
If you're using Docker from the command line, the following command pulls the latest MoarTube Node image, creates a container from it called moartube-node-1, assigns it port 8181, and sets it to run in the background. It'll auto-restart if it was not stopped by you; it will auto-start when the Docker daemon starts, such as on system boot if the Docker daemon is configured to start on system boot.
docker run -d --restart unless-stopped -p 8181:80 --name moartube-node-1 moartube/moartube-node:latest
note: the Docker container uses /data for its volume container path.
The default login credentials for your node are below. Be sure to change these upon logging in.
username: admin
password: admin
Run the command bash <(wget -O - https://www.moartube.com/bash/install/node)
Your MoarTube node is now ready! :tada:
Run the command sudo snap install node --classic --channel=21
git clone the MoarTube-Node repository (or just download the zip)
Open a terminal within the MoarTube-Node directory
Run the command npm install
Run the command node moartube-node.js
Stop the Moartube Node software if it is running
Run the command sudo nano /etc/systemd/system/moartube-node.service
Below is an example of a moartube-node systemd service unit file
Make any necessary changes and paste it into the nano text editor
[Unit]
Description=MoarTube Node
After=network.target
[Service]
Type=simple
User=root
ExecStart=/snap/bin/node /home/Moartube-Node/moartube-node.js
Restart=always
[Install]
WantedBy=multi-user.target
Run the command sudo systemctl daemon-reload to reload all services
Run the command sudo systemctl enable moartube-node to make the moartube-node service autostart on system boot
Run the command sudo systemctl start moartube-node to start the moartube-node service
Run the command sudo systemctl status moartube-node to view the status of the moartube-node service
Run the command sudo systemctl stop moartube-node to stop the moartube-node service
Run the command sudo systemctl restart moartube-node to restart the moartube-node service
FAQs
A free, open-source, self-hosted, anonymous, decentralized video/live stream platform. Scalable via Cloudflare, works in the cloud or from home WiFi.
The npm package @moartube/moartube-node receives a total of 32 weekly downloads. As such, @moartube/moartube-node popularity was classified as not popular.
We found that @moartube/moartube-node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.