Egg Repository

Pterodactyl Community Egg Repository

node.js generic

A generic node.js egg This will clone a git repo. It defaults to master if no branch is specified. Installs the node_modules on install. If you set user_upload then I assume you know what you are doing.

Read Me

JavaScript Language Generic

This egg is designed to run any generic JavaScript application, allowing users to pull their own JavaScript source code from a Github repository.

There is an option to allow a user to upload their own files to run a bot.

The startup configs and commands may need changing to actually function properly.

Configuration

The server will be stuck as starting until the egg Start Configuration is modified. You have to edit the text to match something your bot will print for Pterodactyl panel to detect it as running. image

You can use arrays to have multiple different values when different bots are being used

{
  "done":[
    "change this text 1",
    "change this text 2"
  ]
}
Yolks
NameTag
Nodejs 25ghcr.io/ptero-eggs/yolks:nodejs_25
Nodejs 24ghcr.io/ptero-eggs/yolks:nodejs_24
Nodejs 23ghcr.io/ptero-eggs/yolks:nodejs_23
Nodejs 22ghcr.io/ptero-eggs/yolks:nodejs_22
Nodejs 21ghcr.io/ptero-eggs/yolks:nodejs_21
Nodejs 20ghcr.io/ptero-eggs/yolks:nodejs_20
Nodejs 19ghcr.io/ptero-eggs/yolks:nodejs_19
Nodejs 18ghcr.io/ptero-eggs/yolks:nodejs_18
Nodejs 17ghcr.io/ptero-eggs/yolks:nodejs_17
Nodejs 16ghcr.io/ptero-eggs/yolks:nodejs_16
Nodejs 14ghcr.io/ptero-eggs/yolks:nodejs_14
Nodejs 12ghcr.io/ptero-eggs/yolks:nodejs_12
Variables and Startup

Startup Command

if [[ -d .git ]] && [[ {{AUTO_UPDATE}} == "1" ]]; then git pull; fi; if [[ ! -z ${NODE_PACKAGES} ]]; then /usr/local/bin/npm install ${NODE_PACKAGES}; fi; if [[ ! -z ${UNNODE_PACKAGES} ]]; then /usr/local/bin/npm uninstall ${UNNODE_PACKAGES}; fi; if [ -f /home/container/package.json ]; then /usr/local/bin/npm install; fi; if [[ "${MAIN_FILE}" == "*.js" ]]; then /usr/local/bin/node "/home/container/${MAIN_FILE}" ${NODE_ARGS}; else /usr/local/bin/ts-node --esm "/home/container/${MAIN_FILE}" ${NODE_ARGS}; fi

Variables

Git Repo Address

GitHub Repo to clone I.E. https://github.com/parkervcp/repo_name

Environment Variable: GIT_ADDRESS
Default Value:
User Viewable:
User Editable:
Install Branch

The branch to install.

Environment Variable: BRANCH
Default Value:
User Viewable:
User Editable:
User Uploaded Files

Skip all the install stuff if you are letting a user upload files. 0 = false (default) 1 = true

Environment Variable: USER_UPLOAD
Default Value: 0
User Viewable:
User Editable:
Auto Update

Pull the latest files on startup when using a GitHub repo.

Environment Variable: AUTO_UPDATE
Default Value: 0
User Viewable:
User Editable:
Additional Node packages

Install additional node packages. Use spaces to separate.

Environment Variable: NODE_PACKAGES
Default Value:
User Viewable:
User Editable:
Git Username

Username to auth with git.

Environment Variable: USERNAME
Default Value:
User Viewable:
User Editable:
Git Access Token

Password to use with git. It's best practice to use a Personal Access Token. https://github.com/settings/tokens https://gitlab.com/-/profile/personal_access_tokens

Environment Variable: ACCESS_TOKEN
Default Value:
User Viewable:
User Editable:
Uninstall Node packages

Uninstall node packages. Use spaces to separate.

Environment Variable: UNNODE_PACKAGES
Default Value:
User Viewable:
User Editable:
Main file

The file that starts the app. Can be .js and .ts

Environment Variable: MAIN_FILE
Default Value: index.js
User Viewable:
User Editable:
Additional Arguments.

Any extra arguments for nodejs or ts-node

Environment Variable: NODE_ARGS
Default Value:
User Viewable:
User Editable:
Install Script
#!/bin/bash
# NodeJS App Installation Script
#
# Server Files: /mnt/server
apt update
apt install -y git curl jq file unzip make gcc g++ python3 python3-dev python3-pip libtool

echo -e "updating npm. please wait..."
npm install npm@latest --location=global

mkdir -p /mnt/server
cd /mnt/server

if [ "${USER_UPLOAD}" == "true" ] || [ "${USER_UPLOAD}" == "1" ]; then
    echo -e "assuming user knows what they are doing have a good day."
    exit 0
fi

## add git ending if it's not on the address
if [[ ${GIT_ADDRESS} != *.git ]]; then
    GIT_ADDRESS=${GIT_ADDRESS}.git
fi

if [ -z "${USERNAME}" ] && [ -z "${ACCESS_TOKEN}" ]; then
    echo -e "using anon api call"
else
    GIT_ADDRESS="https://${USERNAME}:${ACCESS_TOKEN}@$(echo -e ${GIT_ADDRESS} | cut -d/ -f3-)"
fi

## pull git js repo
if [ "$(ls -A /mnt/server)" ]; then
    echo -e "/mnt/server directory is not empty."
    if [ -d .git ]; then
        echo -e ".git directory exists"
        if [ -f .git/config ]; then
            echo -e "loading info from git config"
            ORIGIN=$(git config --get remote.origin.url)
        else
            echo -e "files found with no git config"
            echo -e "closing out without touching things to not break anything"
            exit 10
        fi
    fi

    if [ "${ORIGIN}" == "${GIT_ADDRESS}" ]; then
        echo "pulling latest from github"
        git pull
    fi
else
    echo -e "/mnt/server is empty.\ncloning files into repo"
    if [ -z ${BRANCH} ]; then
        echo -e "cloning default branch"
        git clone ${GIT_ADDRESS} .
    else
        echo -e "cloning ${BRANCH}'"
        git clone --single-branch --branch ${BRANCH} ${GIT_ADDRESS} .
    fi

fi

echo "Installing nodejs packages"
if [[ ! -z ${NODE_PACKAGES} ]]; then
    /usr/local/bin/npm install ${NODE_PACKAGES}
fi

if [ -f /mnt/server/package.json ]; then
    /usr/local/bin/npm install --production
fi

echo -e "install complete"
exit 0
Installation Imagenode:20-trixie-slimInstallation Entrypointbash