Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seandenigris/pharo-web-browser
https://github.com/seandenigris/pharo-web-browser
pharo smalltalk web-browsing
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/seandenigris/pharo-web-browser
- Owner: seandenigris
- License: mit
- Created: 2017-01-31T04:52:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-02T18:51:42.000Z (4 months ago)
- Last Synced: 2024-11-02T07:42:10.402Z (about 2 months ago)
- Topics: pharo, smalltalk, web-browsing
- Language: Smalltalk
- Size: 19.5 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Pharo-Web-Browser
A port of the ["External Web Browser" project from SqueakSource](http://www.squeaksource.com/ExternalWebBrowser.html) to Pharo 5+. Previous attempts [forked due to lack of write-access](http://www.smalltalkhub.com/#!/~SeanDeNigris/ExternalWebBrowser/) and then [ported for NativeBoost](http://www.smalltalkhub.com/#!/~SeanDeNigris/ExternalWebBrowser2).
# Installation
```smalltalk
Metacello new
baseline: 'ExternalWebBrowser';
repository: 'github://seandenigris/Pharo-Web-Browser:master/repository';
onConflict: [ :ex | ex allow ];
load.
```
# Usage## Via Pharo Tools
```smalltalk
Smalltalk tools webBrowser open: 'http://google.com'
```## Directly
```smalltalk
ExternalWebBrowser new open: 'http://google.com'
```