Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 462 Bytes

File metadata and controls

23 lines (16 loc) · 462 Bytes
layout default
title Node.js REPL

Use this space to try out code from the examples!

<script src="https://embed.runkit.com"></script>
<script> const urlParams = new URLSearchParams(window.location.search); const code = urlParams.get('code'); const notebook = RunKit.createNotebook({ element: document.getElementById("repl"), source: code || "// Your JavaScript code goes here", minHeight: "500px", }); </script>