Go to example tasks
Run a JavaScript snippet on JSON input
Created by
ParseBird
Runs a Node.js snippet in an isolated sandbox: it reads a JSON object from standard input, computes sum, count, mean, max and min of `values`, and prints the result as JSON. The output is parsed into the `result` field. Edit `code` and `stdin` to run any transformation, with a 5-second timeout.
AI Code Runner Sandboxparsebird/code-runner-sandbox
Status
Language
Exit code
Signal
+6 fieldsTextNumberBooleanListObject
Input
Language:javascript
Code(required):const chunks=[];
for await (const c of process.stdin) chunks.push(c);
const input=JSON.parse(Buffer.concat(chunks).toString()||'{}');
const v=input.values;
const sum=v.reduce((a,b)=>a+b,0);
console.log(JSON.stringify({sum, count:v.length, mean:sum/v.length, max:Math.max(...v), min:Math.min(...v)}));
Standard input:{"values": [3, 5, 8, 13, 21]}
Timeout (seconds):5
Output fields
Status
Language
Exit code
Signal
Duration (ms)
Timed out
Output truncated
Termination reason
Result parse error
Executed at
Sign up on Apify01
Create your Apify account to access the AI Code Runner Sandbox.
Start the run02
The Actor will start running based on the input automatically.
Receive the output03
Monitor the progress in real-time. You will be notified as soon as your dataset is complete and ready for review.
Integrate into your workflow04
The final output is delivered in JSON, CSV, or Excel format, ready to be plugged into your workflow.
