Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@dodona/papyros) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Papyros
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
Try it Online
Start coding directly in your browser.
Use papyros in your project
Installation
Install via npm or yarn:
npm install @dodona/papyros
# or
yarn add @dodona/papyrosSetup input handling
Running interactive programs in the browser requires special handling of synchronous input.
Papyros supports two approaches (via sync-message):
COOP/COEP headers
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.
Service Worker
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';.
Usage
Minimal setup
If you only want to use the state and runner logic without UI components:
import { papyros } from "@dodona/papyros/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);Minimal setup with components
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";
import "@dodona/papyros/components";
papyros.launch();
</script>
<p-code-runner></p-code-runner>
<p-debugger></p-debugger>
<p-input></p-input>
<p-output></p-output>Theming
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.
Structure
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
Components
<p-code-runner>
A CodeMirror 6 editor to edit, run, and debug code.
Additional buttons can be added via the .buttons slot.
<p-input>
Lets users provide input (batch or interactive), passed to papyros.io.
<p-output>
Visualizes program output: stdout, stderr, and images.
<p-debugger>
Displays execution traces using @dodona/json-tracer.
State API
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 toawaitingInputto 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).
Development
# Clone the repository:
git clone git@github.com:dodona-edu/papyros.git
cd papyros
# Install dependencies:
yarn install
# Build the python packages:
yarn setup
# Start a local server with live reload:
yarn startPublishing
# Build as library
yarn build:lib
# Publish to npm
yarn publish