Pharo-Webside

Description

Webside API implementation in Pharo

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
MIT
Stars
12
Forks
2
Created
Dec. 2, 2020
Updated
Oct. 20, 2025

README excerpt

# Pharo-Webside
[Webside](https://github.com/guillermoamaral/Webside) API implementation for Pharo.
Currently supported version: Pharo 12.

(To install it in Pharo 11 point to pharo11 branch instead of main in the following script)

## Installation

You can load **Webside** evaluating:
```smalltalk
Metacello new
	baseline: 'Webside';
	repository: 'github://guillermoamaral/Pharo-Webside:main';
	load
```
>  Change `main` to some released version if you want a pinned version.

## Usage

You can start `WebsideServer` by evaluating:
```smalltalk
WebsideServer new
	baseUri: '/pharo';
	port: 9002;
	start
```

> Note that you can change the `baseUri` and `port` to whatever you want. This information should be promtped by Webside client once the user wants to connect to a given Smalltalk system.
← Back to results