Papyros is a programming scratchpad in the browser. It allows running code directly in your browser, no installation required. Right now, the focus is on providing a great experience for Python, while also supporting JavaScript. By taking away obstacles between students and coding, the learning experience becomes smoother and less error-prone.
Currently, Papyros provides support for the following programming languages:
- Python, powered by Pyodide
- JavaScript, powered by your browser
Start coding directly in your browser.
Install via npm or yarn:
npm install @dodona/papyros
# or
yarn add @dodona/papyros
Running interactive programs in the browser requires special handling of synchronous input.
Papyros supports two approaches (via sync-message
):
Add the following HTTP headers to your server responses:
{
"Cross-Origin-Opener-Policy": "same-origin",
"Cross-Origin-Embedder-Policy": "require-corp"
}
These headers are required to enable SharedArrayBuffer
, which is the preferred way to handle synchronous input.
They need to be set on all assets that are loaded, including scripts, images, fonts, etc.
If you cannot set these headers, you can use a service worker to handle input.
We provide a compiled and minified version of the InputServiceWorker
in the dist
folder.
You need to serve this file from the root of your domain (i.e. /input-sw.js
).
You can then register the service worker in your application before launching: papyros.serviceWorkerName = 'input-sw.js';
.
If you only want to use the state and runner logic without UI components:
import { papyros } from "@dodona/papyros";
papyros.launch(); // heavy operation, loads workers and Pyodide
papyros.runner.code = "print(input())";
papyros.io.subscribe(
() => (papyros.io.awaitingInput ? papyros.io.provideInput("foo") : ""),
"awaitingInput"
);
await papyros.runner.start();
console.log(papyros.runner.io.output[0].content);
Papyros provides four web components for visualization.
Each expects a papyros
state instance, but defaults to the global papyros
.
<script type="module">
import { papyros } from "@dodona/papyros";
papyros.launch();
</script>
<p-code-runner></p-code-runner>
<p-debugger></p-debugger>
<p-input></p-input>
<p-output></p-output>
Papyros uses Material Web Components for buttons, inputs, sliders, etc.
All styling is driven by Material color system CSS variables (--md-sys-color-...
).
Generate your own theme using the Material Theme Builder.
- Three example themes (light + dark) are provided via
papyros.constants.themes
. - A theme picker component is available out of the box.
The codebase organized into clear layers:
backend
: code execution functionality (runs in Web Workers)communication
: helpers to connect frontend and backendfrontend
: all browser-side codestate
: state management (e.g. execution state, debugger, input/output)components
: visualization of that state, as Lit web components
A CodeMirror 6 editor to edit, run, and debug code.
Additional buttons can be added via the .buttons
slot.
Lets users provide input (batch or interactive), passed to papyros.io
.
Visualizes program output: stdout, stderr, and images.
Displays execution traces using @dodona/json-tracer
.
A Papyros
instance contains multiple logical parts:
papyros.constants
: general settings, constants, and themes (can be overridden).papyros.debugger
: debug frames and currently active frame.papyros.examples
: available code examples.papyros.i18n
: translations (extend or override as needed).papyros.io
: input/output handling. Subscribe toawaitingInput
to supply input when needed.papyros.runner
: code, execution state, programming language. Run code withpapyros.runner.start()
.papyros.test
: test code (appended to the code document).
# Clone the repository:
git clone [email protected]:dodona-edu/papyros.git
cd papyros
# Install dependencies:
yarn install
# Build the python packages:
yarn setup
# Start a local server with live reload:
yarn start
# Build as library
yarn build:lib
# Publish to npm
yarn publish