The Coderunner API is a backend service designed to execute code snippets in various programming languages inside a secure, isolated environment. This API is useful for building online code editors, competitive programming platforms, or any application that requires on-the-fly code execution.
- Supports multiple languages.
- Secure execution in isolated environments.
- Can be run locally or inside a Docker container.
git clone https://github.com/thekbbohara/coderunner-API.git
cd coderunner-API
docker build -t coderunner-api .
docker run -e PORT=4000 -e HOST=0.0.0.0 -p 4000:4000 coderunner-api
npm i
mkdir -p tmp/exe
npm start