Skip to content

mistweaverco/node-mastodon-broadcaster

Repository files navigation

Mastodon Broadcaster

Broadcasts your toots to the world. Written in NodeJS.

Multiple accounts supported.

Supported networks

  • Twitter

Installation

Clone

git clone https://github.com/superevilmegaco/node-mastodon-broadcaster

Change into cloned dir

cd node-mastodon-broadcaster

Install dependencies

# With yarn
yarn

# or with npm
npm install

Configuration

Copy config.js.dist to config.js and edit the values accordingly.

cp config.js.dist config.js && vim config.js

If you don't have an Twitter App ID yet, create one here.

Start the daemon

Run the script forever with forever

nohup node_modules/.bin/forever app.js >> log/error.log &

Stop the daemon

nohup node_modules/.bin/forever stop app.js